These files have existing camel-cased equivalents and may not be needed. Former-commit-id:a456af38fa
[formerly8fff0d7e53
] [formerly479ccdbed2
] [formerly9454393d13
[formerly479ccdbed2
[formerly b8e0e8d751a961c5ef25ab346be4b443aadf1291]]] Former-commit-id:9454393d13
Former-commit-id: 7ed16a1e6561227172b77b9994e15bfb96164579 [formerly330b9c3174
] Former-commit-id:45ac1d4d51
23 lines
387 B
C
23 lines
387 B
C
|
|
#ifndef dbmserrs_h
|
|
#define dbmserrs_h
|
|
|
|
|
|
/*
|
|
Error code defines.
|
|
*/
|
|
#define ERR_OK 0
|
|
#define ERR_GENERAL 1
|
|
#define ERR_BAD_ARGS -4444
|
|
#define ERR_OPEN_DBMS 3
|
|
#define ERR_CREATE_HDR 4
|
|
#define ERR_CREATE_SRC 5
|
|
#define ERR_OPEN_INPUT 6
|
|
#define ERR_OPEN_OUTPUT 7
|
|
#define ERR_PREPARE_QID 8
|
|
#define ERR_DESCRIBE_QID 9
|
|
#define ERR_OPEN_CURSOR 10
|
|
#define ERR_INSERT_FAIL 11
|
|
|
|
|
|
#endif
|