Ignore:
Timestamp:
Dec 17, 2000, 11:45:52 PM (25 years ago)
Author:
bird
Message:

Added option for EXE fixes.

File:
1 edited

Legend:

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

    r4774 r4828  
    1 /* $Id: options.h,v 1.13 2000-12-11 06:22:14 bird Exp $
     1/* $Id: options.h,v 1.14 2000-12-17 22:45:52 bird Exp $
    22 *
    33 * Options.
     
    6363            FALSE,                  /* fNoLoader     */     \
    6464            TRUE,                   /* fDllFixes     */     \
     65            TRUE,                   /* fExeFixes     */     \
    6566            CB_SWP_INIT,            /* cbSwpHeapInit */     \
    6667            CB_SWP_MAX,             /* cbSwpHeapMax  */     \
     
    8990#define isDllFixesEnabled()         (options.fDllFixes)
    9091#define isDllFixesDisabled()        (!options.fDllFixes)
     92
     93#define isExeFixesEnabled()         (options.fExeFixes)
     94#define isExeFixesDisabled()        (!options.fExeFixes)
    9195
    9296/* INC */
     
    133137    /** @cat Options affecting the behaviour changes in the OS/2 loader */
    134138    ULONG       fDllFixes;              /* Enables the long DLL name and non .DLL extention fixes. */
     139    ULONG       fExeFixes;              /* Enables EXE files to export entry points. */
    135140
    136141    /** @cat Options affecting the heap. */
Note: See TracChangeset for help on using the changeset viewer.