|
Last change
on this file was
2,
checked in by oldcode, 25 years ago
|
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
1.3 KB
|
| Line | |
|---|
| 1 | #define GB_RUNLENGTH_SIZE 6 |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | extern const int GBCM_BUFFER; /* The communication buffer size */ |
|---|
| 5 | extern const int GB_REMOTE_HASH_SIZE; /* The initial hash size in any client to find the database entry in the server */ |
|---|
| 6 | extern const int GBM_MAX_UNINDEXED_ENTRIES; /* The maximum number fields with the same key which are not put together in one memory segment */ |
|---|
| 7 | |
|---|
| 8 | extern const int GB_TOTAL_CACHE_SIZE ; /* Initial cache size in bytes */ |
|---|
| 9 | extern const int GB_MAX_CACHED_ENTRIES ; /* maximum number of cached items (Maximum 32000) */ |
|---|
| 10 | |
|---|
| 11 | extern const int GB_MAX_QUICK_SAVE_INDEX ; /* Maximum extension-index of quick saves (Maximum 99) */ |
|---|
| 12 | extern const int GB_MAX_QUICK_SAVES ; /* maximum number of quick saves */ |
|---|
| 13 | |
|---|
| 14 | extern const int GB_MAX_LOCAL_SEARCH ; /* Maximum number of childs before doing a earch in the database server */ |
|---|
| 15 | |
|---|
| 16 | extern const int GBTUM_SHORT_STRING_SIZE ; /* the maximum strlen which is stored in short string format */ |
|---|
| 17 | extern const int GB_HUFFMAN_MIN_SIZE ; /* min length, before huffmann code is used */ |
|---|
| 18 | extern const int GB_RUNLENGTH_MIN_SIZE ; /* min length, before runlength code is used */ |
|---|
| 19 | |
|---|
| 20 | extern const int GB_MAX_REDO_CNT ; /* maximum number of redos */ |
|---|
| 21 | extern const int GB_MAX_UNDO_CNT ; /* maximum number of undos */ |
|---|
| 22 | extern const int GB_MAX_UNDO_SIZE ; /* total bytes used for undo*/ |
|---|
| 23 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.