File indexing completed on 2025-08-03 08:20:44
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027 #ifndef _DATABLOCKHDR_
0028 #define _DATABLOCKHDR_
0029
0030
0031
0032
0033 #ifdef __cplusplus
0034 extern "C" {
0035 #endif
0036
0037 typedef
0038 struct dataBlockHdr {
0039
0040 BYTE wordSize ;
0041 BYTE addrLength ;
0042 BYTE hitLength ;
0043 BYTE dataPadding ;
0044
0045 SWORD hitFormat ;
0046 SWORD numEntries ;
0047
0048 } DATABLOCKHDR, * DATABLOCKHDR_ptr;
0049
0050
0051
0052
0053
0054
0055 #define CURRENT_NUM_ENTRIES 0
0056 #define CURRENT_WORD_SIZE 0
0057 #define CURRENT_HIT_LENGTH 0
0058 #define CURRENT_HIT_FORMAT 0
0059 #define CURRENT_ADDR_LENGTH 0
0060 #define CURRENT_DATA_PADDING 0
0061 #define CURRENT_DESC_LENGTH 2
0062 #define CURRENT_UNSTRUCT_DESC_LENGTH 1
0063
0064 CONSTANT UINT currentNumEntries = CURRENT_NUM_ENTRIES;
0065 CONSTANT UINT currentWordSize = CURRENT_WORD_SIZE;
0066 CONSTANT UINT currentHitLength = CURRENT_HIT_LENGTH;
0067 CONSTANT UINT currentHitFormat = CURRENT_HIT_FORMAT;
0068 CONSTANT UINT currentAddrLength = CURRENT_ADDR_LENGTH;
0069 CONSTANT UINT currentDataPadding = CURRENT_DATA_PADDING;
0070 CONSTANT UINT currentDescLength = CURRENT_DESC_LENGTH;
0071 CONSTANT UINT currentUnstructDescLength = CURRENT_UNSTRUCT_DESC_LENGTH;
0072 #ifdef __cplusplus
0073 }
0074
0075 #endif
0076
0077 #endif
0078