1 #ifndef _RXPOOLTG_H_ 2 #define _RXPOOLTG_H_ 3 4 #define RX_SRVCALL_POOLTAG ('cSxR') 5 #define RX_NETROOT_POOLTAG ('rNxR') 6 #define RX_V_NETROOT_POOLTAG ('nVxR') 7 #define RX_FCB_POOLTAG ('cFxR') 8 #define RX_NONPAGEDFCB_POOLTAG ('fNxR') 9 #define RX_WORKQ_POOLTAG ('qWxR') 10 #define RX_MISC_POOLTAG ('sMxR') 11 #define RX_IRPC_POOLTAG ('rIxR') 12 #ifdef __REACTOS__ 13 #define RX_TLC_POOLTAG ('??xR') 14 #endif 15 16 extern ULONG RxExplodePoolTags; 17 18 #define RX_DEFINE_POOLTAG(ExplodedPoolTag, DefaultPoolTag) ((RxExplodePoolTags == 0) ? (DefaultPoolTag) : (ExplodedPoolTag)) 19 20 #define RX_DIRCTL_POOLTAG RX_DEFINE_POOLTAG('cDxR', RX_MISC_POOLTAG) 21 22 #endif 23