home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / include / mysys_err.h < prev    next >
C/C++ Source or Header  |  2000-09-27  |  2KB  |  59 lines

  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.  
  18. #ifndef _mysys_err_h
  19. #define _mysys_err_h
  20. #ifdef    __cplusplus
  21. extern "C" {
  22. #endif
  23.  
  24. #define GLOB        0    /* Error maps */
  25. #define GLOBERRS    24    /* Max number of error messages in map's */
  26. #define EE(X)    globerrs[ X ]    /* Defines to add error to right map */
  27.  
  28. extern const char * NEAR globerrs[];    /* my_error_messages is here */
  29.  
  30. /* Error message numbers in global map */
  31. #define EE_FILENOTFOUND        0
  32. #define EE_CANTCREATEFILE    1
  33. #define EE_READ            2
  34. #define EE_WRITE        3
  35. #define EE_BADCLOSE        4
  36. #define EE_OUTOFMEMORY        5
  37. #define EE_DELETE        6
  38. #define EE_LINK            7
  39. #define EE_EOFERR        9
  40. #define EE_CANTLOCK        10
  41. #define EE_CANTUNLOCK        11
  42. #define EE_DIR            12
  43. #define EE_STAT            13
  44. #define EE_CANT_CHSIZE        14
  45. #define EE_CANT_OPEN_STREAM    15
  46. #define EE_GETWD        16
  47. #define EE_SETWD        17
  48. #define EE_LINK_WARNING        18
  49. #define EE_OPEN_WARNING        19
  50. #define EE_DISK_FULL        20
  51. #define EE_CANT_MKDIR        21
  52. #define EE_UNKNOWN_CHARSET    22
  53. #define EE_OUT_OF_FILERESOURCES    23
  54.  
  55. #ifdef    __cplusplus
  56. }
  57. #endif
  58. #endif
  59.