home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / Chip_1997-10_cd.bin / tema / sybase / powerj / hpp.z / WODBC.HPP < prev    next >
C/C++ Source or Header  |  1996-10-18  |  503b  |  29 lines

  1.  
  2. #ifndef WODBC_HPP_INCLUDED
  3. #define WODBC_HPP_INCLUDED
  4.  
  5. #ifndef _WNO_PRAGMA_PUSH
  6. #pragma pack(push,8);
  7. #pragma enum int;
  8. #endif
  9.  
  10. // Include the ODBC definitions since we want to use the same types
  11. // and such.
  12.  
  13. #ifndef __ODBC_H_INCLUDED
  14. #define ODBC_WINNT
  15. #include "odbc.h"
  16. #endif
  17.  
  18. #define SQL_C_NOTYPE     0
  19.  
  20. #define SQL_WCM_ERROR   -1000
  21. #define SQL_WCM_WARNING  1000
  22.  
  23. #ifndef _WNO_PRAGMA_PUSH
  24. #pragma enum pop;
  25. #pragma pack(pop);
  26. #endif
  27.  
  28. #endif /* __WODBC_HPP_INCLUDED */
  29.