Ignore:
Timestamp:
Dec 11, 2000, 7:22:15 AM (25 years ago)
Author:
bird
Message:

Added option fDllFixes.

File:
1 edited

Legend:

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

    r4307 r4774  
    1 /* $Id: options.h,v 1.12 2000-09-22 09:22:37 bird Exp $
     1/* $Id: options.h,v 1.13 2000-12-11 06:22:14 bird Exp $
    22 *
    33 * Options.
     
    6262            TRUE,                   /* fJava         */     \
    6363            FALSE,                  /* fNoLoader     */     \
     64            TRUE,                   /* fDllFixes     */     \
    6465            CB_SWP_INIT,            /* cbSwpHeapInit */     \
    6566            CB_SWP_MAX,             /* cbSwpHeapMax  */     \
     
    8485
    8586#define isSMPKernel()               (options.fKernel & KF_SMP)
    86 #define isUNIKernel()               !(options.fKernel & KF_SMP)
     87#define isUNIKernel()               (!(options.fKernel & KF_SMP))
     88
     89#define isDllFixesEnabled()         (options.fDllFixes)
     90#define isDllFixesDisabled()        (!options.fDllFixes)
     91
    8792/* INC */
    8893
     
    126131    ULONG       fNoLoader;              /* No loader stuff. !FIXME! We should import / functions even if this flag is set!!! */
    127132
     133    /** @cat Options affecting the behaviour changes in the OS/2 loader */
     134    ULONG       fDllFixes;              /* Enables the long DLL name and non .DLL extention fixes. */
     135
    128136    /** @cat Options affecting the heap. */
    129137    ULONG       cbSwpHeapInit;          /* Initial heapsize. */
Note: See TracChangeset for help on using the changeset viewer.