11 static test_structure_1
struct1(test_structure_1 ts
)
23 ffi_type
*args
[MAX_ARGS
];
24 void *values
[MAX_ARGS
];
26 ffi_type
*ts1_type_elements
[4];
28 memset(&cif
, 1, sizeof(cif
));
30 ts1_type
.alignment
= 0;
31 ts1_type
.type
= FFI_TYPE_STRUCT
;
32 ts1_type
.elements
= ts1_type_elements
;
33 ts1_type_elements
[0] = &ffi_type_uchar
;
34 ts1_type_elements
[1] = &ffi_type_double
;
35 ts1_type_elements
[2] = &ffi_type_uint
;
36 ts1_type_elements
[3] = NULL
;
38 test_structure_1 ts1_arg
;
39 /* This is a hack to get a properly aligned result buffer */
40 test_structure_1
*ts1_result
=
41 (test_structure_1
*) malloc (sizeof(test_structure_1
));
46 /* Initialize the cif */
47 CHECK(ffi_prep_cif(&cif
, FFI_DEFAULT_ABI
, 1,
48 &ts1_type
, args
) == FFI_OK
);
54 ffi_call(&cif
, FFI_FN(struct1
), ts1_result
, values
);
56 CHECK(ts1_result
->ui
== 556);
57 CHECK(ts1_result
->d
== 3.14159 - 1);