PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
sqlda.h
Go to the documentation of this file.
1#ifndef ECPG_SQLDA_H
2#define ECPG_SQLDA_H
3
4#ifdef _ECPG_INFORMIX_H
5
6#include "sqlda-compat.h"
7typedef struct sqlvar_compat sqlvar_t;
8typedef struct sqlda_compat sqlda_t;
9
10#else
11
12#include "sqlda-native.h"
13typedef struct sqlvar_struct sqlvar_t;
14typedef struct sqlda_struct sqlda_t;
15
16#endif
17
18#endif /* ECPG_SQLDA_H */