00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
#ifndef _NODETYPE_
00025
#define _NODETYPE_
00026
00027 typedef CSHORT
NODE_TYPE_CODE;
00028 typedef NODE_TYPE_CODE *
PNODE_TYPE_CODE;
00029
00030 #define NTC_UNDEFINED ((NODE_TYPE_CODE)0x0000)
00031
00032 #define LFS_NTC_LCB ((NODE_TYPE_CODE)0x800)
00033 #define LFS_NTC_LCH ((NODE_TYPE_CODE)0x801)
00034 #define LFS_NTC_LBCB ((NODE_TYPE_CODE)0x802)
00035 #define LFS_NTC_LFCB ((NODE_TYPE_CODE)0x803)
00036 #define LFS_NTC_DATA ((NODE_TYPE_CODE)0x804)
00037
00038 typedef CSHORT
NODE_BYTE_SIZE;
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 #define NodeType(Ptr) (*((PNODE_TYPE_CODE)(Ptr)))
00052
00053
#endif // _NODETYPE_
00054