Ignore:
Timestamp:
Jan 21, 2001, 12:50:45 AM (25 years ago)
Author:
bird
Message:

Added new Api enhancement option and ini file name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/include/options.h

    r4972 r4995  
    1 /* $Id: options.h,v 1.16 2001-01-19 02:28:53 bird Exp $
     1/* $Id: options.h,v 1.17 2001-01-20 23:50:45 bird Exp $
    22 *
    33 * Options.
     
    7171            TRUE,                   /* fDllFixes     */     \
    7272            TRUE,                   /* fExeFixes     */     \
     73            FALSE,                  /* fApiEnh       */     \
    7374            CB_SWP_INIT,            /* cbSwpHeapInit */     \
    7475            CB_SWP_MAX,             /* cbSwpHeapMax  */     \
     
    100101#define isExeFixesEnabled()         (options.fExeFixes)
    101102#define isExeFixesDisabled()        (!options.fExeFixes)
     103
     104#define isApiEnhEnabled()           (options.fApiEnh)
     105#define isApiEnhDisabled()          (!options.fApiEnh)
    102106
    103107/* INC */
     
    145149    ULONG       fDllFixes;              /* Enables the long DLL name and non .DLL extention fixes. */
    146150    ULONG       fExeFixes;              /* Enables EXE files to export entry points. */
     151    ULONG       fApiEnh;                /* Enables the API enhancements */
    147152
    148153    /** @cat Options affecting the heap. */
     
    159164/* NOINC */
    160165extern struct options DATA16_GLOBAL options;    /* defined in d16globals.c */
     166extern char   szWin32kIni[CCHMAXPATH];          /* defined in d16globals.c */
    161167#if defined(__IBMC__) || defined(__IBMCPP__)
    162168    #pragma map( options , "_options"  )
     169    #pragma map( szWin32kIni, "_szWin32kIni" )
    163170#endif
    164171/* INC */
Note: See TracChangeset for help on using the changeset viewer.