Changeset 5099


Ignore:
Timestamp:
Feb 11, 2001, 4:12:23 PM (24 years ago)
Author:
bird
Message:

Addjusted the import number. Added Not-Required versions of VARs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/win32k/include/probkrnl.h

    r4781 r5099  
    1 /* $Id: probkrnl.h,v 1.17 2000-12-11 06:34:45 bird Exp $
     1/* $Id: probkrnl.h,v 1.18 2001-02-11 15:12:23 bird Exp $
    22 *
    33 * Include file for ProbKrnl.
     
    1616*   Defined Constants And Macros                                               *
    1717*******************************************************************************/
    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   */
    1919                                        /* update the aImportTab in probkrnl.c */
    2020                                        /* and make test faker in test.h and   */
     
    4141#define EPT_PROCIMPORTNR32      (EPT_PROCIMPORT | EPT_32BIT | EPT_NOT_REQ)
    4242#define EPT_VARIMPORT32         (EPT_VARIMPORT | EPT_32BIT)
     43#define EPT_VARIMPORTNR32       (EPT_VARIMPORT | EPT_32BIT | EPT_NOT_REQ)
    4344#define EPT32Proc(a)            (((a).fType & ~(EPT_WRAPPED)) == EPT_PROC32)
    4445#define EPT32ProcImport(a)      (((a).fType & ~(EPT_WRAPPED)) == EPT_PROCIMPORT32)
    4546#define EPT32ProcImportNR(a)    (((a).fType & ~(EPT_WRAPPED)) == EPT_PROCIMPORTNR32)
    4647#define EPT32VarImport(a)       (((a).fType & ~(EPT_WRAPPED)) == EPT_VARIMPORT32)
     48#define EPT32VarImportNR(a)     (((a).fType & ~(EPT_WRAPPED)) == EPT_VARIMPORTNR32)
    4749
    4850/* 16bit types */
     
    5153#define EPT_PROCIMPORTNR16      (EPT_PROCIMPORT | EPT_16BIT | EPT_NOT_REQ)
    5254#define EPT_VARIMPORT16         (EPT_VARIMPORT | EPT_16BIT)
     55#define EPT_VARIMPORTNR16       (EPT_VARIMPORT | EPT_16BIT | EPT_NOT_REQ)
    5356#define EPT16Proc(a)            (((a).fType & ~(EPT_WRAPPED)) == EPT_PROC16)
    5457#define EPT16ProcImport(a)      (((a).fType & ~(EPT_WRAPPED)) == EPT_PROCIMPORT16)
    5558#define EPT16ProcImportNR(a)    (((a).fType & ~(EPT_WRAPPED)) == EPT_PROCIMPORTNR16)
    5659#define EPT16VarImport(a)       (((a).fType & ~(EPT_WRAPPED)) == EPT_VARIMPORT16)
     60#define EPT16VarImportNR(a)     (((a).fType & ~(EPT_WRAPPED)) == EPT_VARIMPORTNR16)
    5761
    5862
Note: See TracChangeset for help on using the changeset viewer.