mysys_err.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. #ifndef _mysys_err_h
  18. #define _mysys_err_h
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. #define GLOB 0 /* Error maps */
  23. #define GLOBERRS 24 /* Max number of error messages in map's */
  24. #define EE(X) globerrs[ X ] /* Defines to add error to right map */
  25. extern const char * NEAR globerrs[]; /* my_error_messages is here */
  26. /* Error message numbers in global map */
  27. #define EE_FILENOTFOUND 0
  28. #define EE_CANTCREATEFILE 1
  29. #define EE_READ 2
  30. #define EE_WRITE 3
  31. #define EE_BADCLOSE 4
  32. #define EE_OUTOFMEMORY 5
  33. #define EE_DELETE 6
  34. #define EE_LINK 7
  35. #define EE_EOFERR 9
  36. #define EE_CANTLOCK 10
  37. #define EE_CANTUNLOCK 11
  38. #define EE_DIR 12
  39. #define EE_STAT 13
  40. #define EE_CANT_CHSIZE 14
  41. #define EE_CANT_OPEN_STREAM 15
  42. #define EE_GETWD 16
  43. #define EE_SETWD 17
  44. #define EE_LINK_WARNING 18
  45. #define EE_OPEN_WARNING 19
  46. #define EE_DISK_FULL 20
  47. #define EE_CANT_MKDIR 21
  48. #define EE_UNKNOWN_CHARSET 22
  49. #define EE_OUT_OF_FILERESOURCES 23
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53. #endif