defs.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #ifndef __mysql_defs_h_
  2. #define __mysql_defs_h_
  3. #include "define_short.h"
  4. #include <mysql.h>
  5. #if defined(NO_LONG_LONGS)
  6. typedef unsigned long ulonglong;
  7. typedef long longlong;
  8. #else
  9. typedef unsigned __int64 ulonglong;
  10. typedef __int64 longlong;
  11. #endif
  12. typedef MYSQL_FIELD MysqlField;
  13. typedef const char cchar;
  14. typedef longlong longgint;
  15. #ifndef uint
  16. typedef unsigned int uint;
  17. #endif
  18. class Connection;
  19. class ResUse;
  20. class Result;
  21. class FieldNames;
  22. const bool use_exceptions = true;
  23. #endif