mysys_err.h
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. #ifndef _mysys_err_h
  4. #define _mysys_err_h
  5. #define GLOB 0 /* Error maps */
  6. #define GLOBERRS 21 /* Max number of error messages in map's */
  7. #define EE(X) globerrs[ X ] /* Defines to add error to right map */
  8. extern char * NEAR globerrs[]; /* my_error_messages is here */
  9. /* Error message numbers in global map */
  10. #define EE_FILENOTFOUND 0
  11. #define EE_CANTCREATEFILE 1
  12. #define EE_READ 2
  13. #define EE_WRITE 3
  14. #define EE_BADCLOSE 4
  15. #define EE_OUTOFMEMORY 5
  16. #define EE_DELETE 6
  17. #define EE_LINK 7
  18. #define EE_EOFERR 9
  19. #define EE_CANTLOCK 10
  20. #define EE_CANTUNLOCK 11
  21. #define EE_DIR 12
  22. #define EE_STAT 13
  23. #define EE_CANT_CHSIZE 14
  24. #define EE_CANT_OPEN_STREAM 15
  25. #define EE_GETWD 16
  26. #define EE_SETWD 17
  27. #define EE_LINK_WARNING 18
  28. #define EE_OPEN_WARNING 19
  29. #define EE_DISK_FULL 20
  30. #endif