~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mysys_err.h

  • Committer: Monty Taylor
  • Date: 2008-08-02 01:24:51 UTC
  • mfrom: (202.3.14 gettextize)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080802012451-nmql6eujc8wc8ogh
Merged in gettextize changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
extern "C" {
20
20
#endif
21
21
 
22
 
#define GLOBERRS (EE_ERROR_LAST - EE_ERROR_FIRST + 1) /* Nr of global errors */
23
 
#define EE(X)    (globerrs[(X) - EE_ERROR_FIRST])
24
 
 
25
 
extern const char * globerrs[]; /* my_error_messages is here */
26
 
 
27
 
/* Error message numbers in global map */
 
22
 
28
23
/*
29
24
  Do not add error numbers before EE_ERROR_FIRST.
30
25
  If necessary to add lower numbers, change EE_ERROR_FIRST accordingly.
81
76
#define EXIT_OPTION_DISABLED            12
82
77
#define EXIT_ARGUMENT_INVALID           13
83
78
 
 
79
#define GLOBERRS (EE_ERROR_LAST - EE_ERROR_FIRST + 1) /* Nr of global errors */
 
80
#define EE(X)    (globerrs[(X) - EE_ERROR_FIRST])
 
81
 
 
82
/* Error message numbers in global map */
 
83
extern const char * globerrs[GLOBERRS];
84
84
 
85
85
#ifdef  __cplusplus
86
86
}