mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-25 02:03:03 +01:00
17 lines
279 B
C
17 lines
279 B
C
|
#ifndef JRD_BLKS_H
|
||
|
#define JRD_BLKS_H
|
||
|
|
||
|
/* #include "../jrd/all.h" */
|
||
|
|
||
|
//extern plb::alloc_info jrd_alloc_info;
|
||
|
|
||
|
#define BLKDEF(type, root, tail) type,
|
||
|
enum jrd_blk_t {
|
||
|
type_MIN_jrd = 0,
|
||
|
#include "../jrd/blk.h"
|
||
|
type_MAX_jrd
|
||
|
};
|
||
|
#undef BLKDEF
|
||
|
|
||
|
#endif // JRD_BLKS_H
|