mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
55 lines
848 B
C
55 lines
848 B
C
#ifndef __in
|
|
#define __in
|
|
#endif
|
|
|
|
#ifndef __out
|
|
#define __out
|
|
#endif
|
|
|
|
#ifndef __out_opt
|
|
#define __out_opt __out
|
|
#endif
|
|
|
|
#ifndef __ecount
|
|
#define __ecount(num_args)
|
|
#endif
|
|
|
|
#ifndef __in_ecount
|
|
#define __in_ecount(num_args) __in __ecount(num_args)
|
|
#endif
|
|
|
|
#ifndef __out_ecount
|
|
#define __out_ecount(num_args) __out __ecount(num_args)
|
|
#endif
|
|
|
|
#ifndef __inout_ecount
|
|
#define __inout_ecount(num_args) __in __out __ecount(num_args)
|
|
#endif
|
|
|
|
#ifndef __inout
|
|
#define __inout __in __out
|
|
#endif
|
|
|
|
#ifndef Z3_bool_opt
|
|
#define Z3_bool_opt Z3_bool
|
|
#endif
|
|
|
|
#ifndef Z3_API
|
|
#define Z3_API
|
|
#endif
|
|
|
|
#ifndef DEFINE_TYPE
|
|
#define DEFINE_TYPE(T) typedef struct _ ## T *T
|
|
#endif
|
|
|
|
#ifndef DEFINE_VOID
|
|
#define DEFINE_VOID(T) typedef void* T
|
|
#endif
|
|
|
|
#ifndef BEGIN_MLAPI_EXCLUDE
|
|
#define BEGIN_MLAPI_EXCLUDE
|
|
#endif
|
|
#ifndef END_MLAPI_EXCLUDE
|
|
#define END_MLAPI_EXCLUDE
|
|
#endif
|