sqlda.h 317 B

123456789101112131415161718
  1. #ifndef ECPG_SQLDA_H
  2. #define ECPG_SQLDA_H
  3. #ifdef _ECPG_INFORMIX_H
  4. #include "sqlda-compat.h"
  5. typedef struct sqlvar_compat sqlvar_t;
  6. typedef struct sqlda_compat sqlda_t;
  7. #else
  8. #include "sqlda-native.h"
  9. typedef struct sqlvar_struct sqlvar_t;
  10. typedef struct sqlda_struct sqlda_t;
  11. #endif
  12. #endif /* ECPG_SQLDA_H */