Changeset 5099
- Timestamp:
- Feb 11, 2001, 4:12:23 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/win32k/include/probkrnl.h ¶
r4781 r5099 1 /* $Id: probkrnl.h,v 1.1 7 2000-12-11 06:34:45bird Exp $1 /* $Id: probkrnl.h,v 1.18 2001-02-11 15:12:23 bird Exp $ 2 2 * 3 3 * Include file for ProbKrnl. … … 16 16 * Defined Constants And Macros * 17 17 *******************************************************************************/ 18 #define NBR_OF_KRNLIMPORTS 52/* When this is changed make sure to */18 #define NBR_OF_KRNLIMPORTS 77 /* When this is changed make sure to */ 19 19 /* update the aImportTab in probkrnl.c */ 20 20 /* and make test faker in test.h and */ … … 41 41 #define EPT_PROCIMPORTNR32 (EPT_PROCIMPORT | EPT_32BIT | EPT_NOT_REQ) 42 42 #define EPT_VARIMPORT32 (EPT_VARIMPORT | EPT_32BIT) 43 #define EPT_VARIMPORTNR32 (EPT_VARIMPORT | EPT_32BIT | EPT_NOT_REQ) 43 44 #define EPT32Proc(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_PROC32) 44 45 #define EPT32ProcImport(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_PROCIMPORT32) 45 46 #define EPT32ProcImportNR(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_PROCIMPORTNR32) 46 47 #define EPT32VarImport(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_VARIMPORT32) 48 #define EPT32VarImportNR(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_VARIMPORTNR32) 47 49 48 50 /* 16bit types */ … … 51 53 #define EPT_PROCIMPORTNR16 (EPT_PROCIMPORT | EPT_16BIT | EPT_NOT_REQ) 52 54 #define EPT_VARIMPORT16 (EPT_VARIMPORT | EPT_16BIT) 55 #define EPT_VARIMPORTNR16 (EPT_VARIMPORT | EPT_16BIT | EPT_NOT_REQ) 53 56 #define EPT16Proc(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_PROC16) 54 57 #define EPT16ProcImport(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_PROCIMPORT16) 55 58 #define EPT16ProcImportNR(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_PROCIMPORTNR16) 56 59 #define EPT16VarImport(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_VARIMPORT16) 60 #define EPT16VarImportNR(a) (((a).fType & ~(EPT_WRAPPED)) == EPT_VARIMPORTNR16) 57 61 58 62
Note:
See TracChangeset
for help on using the changeset viewer.