]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/include/openils/idl_fieldmapper.h
Support IS NULL and IS NOT NULL expressions.
[working/Evergreen.git] / Open-ILS / include / openils / idl_fieldmapper.h
1 /* This set of macros will emulate the old style libfieldmapper api
2  * using the new liboils_idl interface.  You MUST initiallize liboils_idl!
3  */ 
4
5 #ifndef FIELDMAPPER_API
6
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10
11 #ifndef OILS_IDL_API
12 #include "oils_idl.h"
13 #endif
14
15 #define FIELDMAPPER_API
16
17 #define fm_pton(x,y) oilsIDL_pton(x,y)
18 #define fm_ntop(x,y) oilsIDL_ntop(x,y)
19 #define isFieldmapper(x) oilsIDL_classIsFieldmapper(x)
20
21 #ifdef __cplusplus
22 }
23 #endif
24
25 #endif
26