2001-07-12 08:32:05 +02:00
|
|
|
#ifndef FB_MISC_STATUS_H
|
|
|
|
#define FB_MISC_STATUS_H
|
|
|
|
|
|
|
|
#include <stdlib.h> // size_t
|
2003-04-10 08:49:16 +02:00
|
|
|
#include "../jrd/common.h" // ISC_STATUS
|
2001-07-12 08:32:05 +02:00
|
|
|
|
2004-05-06 20:09:24 +02:00
|
|
|
const int MAX_ERRMSG_LEN = 128;
|
|
|
|
const int MAX_ERRSTR_LEN = 255;
|
2001-07-12 08:32:05 +02:00
|
|
|
|
2003-04-10 08:49:16 +02:00
|
|
|
void STUFF_STATUS_function(ISC_STATUS* status_vector, ISC_STATUS status, va_list args);
|
2001-07-12 08:32:05 +02:00
|
|
|
|
2003-04-10 08:49:16 +02:00
|
|
|
void PARSE_STATUS(ISC_STATUS * status_vector, int &length, int &warning);
|
2001-07-12 08:32:05 +02:00
|
|
|
|
|
|
|
#endif // FB_MISC_STATUS_H
|