Ignore:
Timestamp:
Feb 12, 2001, 12:44:38 AM (25 years ago)
Author:
bird
Message:

Added force preload.

File:
1 edited

Legend:

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

    r5097 r5119  
    1 /* $Id: options.h,v 1.20 2001-02-11 15:04:26 bird Exp $
     1/* $Id: options.h,v 1.21 2001-02-11 23:44:38 bird Exp $
    22 *
    33 * Options.
     
    7979            TRUE,                   /* fDllFixes     */     \
    8080            TRUE,                   /* fExeFixes     */     \
     81            FALSE,                  /* fForcePreload */     \
    8182            FALSE,                  /* fApiEnh       */     \
    8283            CB_SWP_INIT,            /* cbSwpHeapInit */     \
     
    114115#define isExeFixesEnabled()         (options.fExeFixes)
    115116#define isExeFixesDisabled()        (!options.fExeFixes)
     117
     118#define isForcePreloadEnabled()     (options.fForcePreload)
     119#define isForcePreloadDisabled()    (!options.fForcePreload)
    116120
    117121#define isApiEnhEnabled()           (options.fApiEnh)
     
    163167    ULONG       fDllFixes;              /* Enables the long DLL name and non .DLL extention fixes. */
    164168    ULONG       fExeFixes;              /* Enables EXE files to export entry points. */
     169    ULONG       fForcePreload;          /* Forces the loader to preload executable images. Handy for ICAT Ring-3 debugging. */
    165170    ULONG       fApiEnh;                /* Enables the API enhancements */
    166171
Note: See TracChangeset for help on using the changeset viewer.