blob: cdf71c0e67149e0b8da655f9c9a26bce9e2ad760 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef PyObjC_FFI_SUPPORT_H
#define PyObjC_FFI_SUPPORT_H
#include "ffi.h"
ffi_type*
objcl_pyobjc_signature_to_ffi_return_type (const char* argtype);
ffi_type*
objcl_pyobjc_arg_signature_to_ffi_type (const char* argtype);
#endif /* PyObjC_FFI_SUPPORT_H */
|