mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
616 B
22 lines
616 B
//============== DAE: OS/2 Database Access Engine ===================
|
|
//============== spaceint.h: Space Manager Internals ===================
|
|
|
|
/* miscellaneous constants
|
|
*/
|
|
#define fFreeToPool fTrue
|
|
|
|
/* Space Manager constants
|
|
*/
|
|
#define cSecFrac 4 // divider of primary extent to get secondary
|
|
// extent size, =cpgPrimary/cpgSecondary
|
|
#define cpgSESysMin 16 // minimum secondary extent size
|
|
#define pgnoSysMax (1<<22) // maximum page number allowed in database
|
|
|
|
#define NA 0
|
|
#define fDIBNull 0
|
|
|
|
/* FUCB work area flags
|
|
*/
|
|
#define fNone 0
|
|
#define fSecondary 1
|
|
#define fFreed 2
|