]> granicus.if.org Git - postgresql/blob - src/interfaces/ecpg/include/sqlda.h
b1b4debf905721a6fb794baa5b3ff0f57aa8e800
[postgresql] / src / interfaces / ecpg / include / sqlda.h
1 #ifndef ECPG_SQLDA_H
2 #define ECPG_SQLDA_H
3
4 #ifdef _ECPG_INFORMIX_H
5
6 #include "sqlda-compat.h"
7 typedef struct sqlvar_compat    sqlvar_t;
8 typedef struct sqlda_compat     sqlda_t;
9
10 #else
11
12 #include "sqlda-native.h"
13 typedef struct sqlvar_struct    sqlvar_t;
14 typedef struct sqlda_struct     sqlda_t;
15
16 #endif
17
18 #endif /* ECPG_SQLDA_H */