[go: up one dir, main page]

File: libffi.map.in

package info (click to toggle)
libffi 3.5.2-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 4,056 kB
  • sloc: ansic: 39,406; asm: 14,495; sh: 3,567; exp: 815; makefile: 358; python: 319; perl: 171; cpp: 134
file content (93 lines) | stat: -rw-r--r-- 1,854 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#define LIBFFI_ASM
#define LIBFFI_H
#include <fficonfig.h>
#include <ffitarget.h>

/* These version numbers correspond to the libtool-version abi numbers,
   not to the libffi release numbers.  */

LIBFFI_BASE_8.0 {
  global:
	/* Exported data variables.  */
	ffi_type_void;
	ffi_type_uint8;
	ffi_type_sint8;
	ffi_type_uint16;
	ffi_type_sint16;
	ffi_type_uint32;
	ffi_type_sint32;
	ffi_type_uint64;
	ffi_type_sint64;
	ffi_type_float;
	ffi_type_double;
	ffi_type_longdouble;
	ffi_type_pointer;

	ffi_call;
	ffi_prep_cif;
	ffi_prep_cif_var;

	ffi_raw_call;
	ffi_ptrarray_to_raw;
	ffi_raw_to_ptrarray;
	ffi_raw_size;

#if !FFI_NATIVE_RAW_API
	ffi_java_raw_call;
#endif

	ffi_java_ptrarray_to_raw;
	ffi_java_raw_to_ptrarray;
	ffi_java_raw_size;

	ffi_get_struct_offsets;
  local:
	*;
};

/* ----------------------------------------------------------------------
   Symbols **added in libffi 3.5.0**.
   Give them a fresh namespace so that package managers notice when
   code requires a newer libffi than 3.4.x.
   -------------------------------------------------------------------- */
LIBFFI_BASE_8.1 {
  global:
    ffi_get_version;
    ffi_get_version_number;
    ffi_get_default_abi;
    ffi_get_closure_size;
} LIBFFI_BASE_8.0;

#ifdef FFI_TARGET_HAS_COMPLEX_TYPE
LIBFFI_COMPLEX_8.0 {
  global:
	/* Exported data variables.  */
	ffi_type_complex_float;
	ffi_type_complex_double;
	ffi_type_complex_longdouble;
} LIBFFI_BASE_8.0;
#endif

#if FFI_CLOSURES
LIBFFI_CLOSURE_8.0 {
  global:
	ffi_closure_alloc;
	ffi_closure_free;
	ffi_prep_closure;
	ffi_prep_closure_loc;
	ffi_prep_raw_closure;
	ffi_prep_raw_closure_loc;
#if !FFI_NATIVE_RAW_API
	ffi_prep_java_raw_closure;
	ffi_prep_java_raw_closure_loc;
#endif
} LIBFFI_BASE_8.0;
#endif

#if FFI_GO_CLOSURES
LIBFFI_GO_CLOSURE_8.0 {
  global:
	ffi_call_go;
	ffi_prep_go_closure;
} LIBFFI_CLOSURE_8.0;
#endif