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.
12 lines
370 B
12 lines
370 B
//
|
|
// infdata.h
|
|
//
|
|
#ifdef DECLARE_DATA
|
|
SHORT g_StaticDistanceTreeTable[STATIC_BLOCK_DISTANCE_TABLE_SIZE];
|
|
SHORT g_StaticLiteralTreeTable[STATIC_BLOCK_LITERAL_TABLE_SIZE];
|
|
#else
|
|
extern SHORT g_StaticDistanceTreeTable[STATIC_BLOCK_DISTANCE_TABLE_SIZE];
|
|
extern SHORT g_StaticLiteralTreeTable[STATIC_BLOCK_LITERAL_TABLE_SIZE];
|
|
#endif
|
|
|
|
|