mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-27 05:23:02 +01:00
19 lines
451 B
C
19 lines
451 B
C
#ifndef FB_MISC_STATUS_H
|
|
#define FB_MISC_STATUS_H
|
|
|
|
#include <stdlib.h> // size_t
|
|
#include "../jrd/common.h" // STATUS
|
|
|
|
#define MAX_ERRMSG_LEN 128
|
|
#define MAX_ERRSTR_LEN 255
|
|
|
|
#ifdef __cplusplus
|
|
/* only allow these functions from C++ code (use of reference) */
|
|
|
|
void STUFF_STATUS_function(STATUS* status_vector, STATUS status, va_list args);
|
|
|
|
void PARSE_STATUS(STATUS * status_vector, int &length, int &warning);
|
|
#endif
|
|
|
|
#endif // FB_MISC_STATUS_H
|