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/k32/k32SetOptions.cpp

    r4307 r4774  
    1 /* $Id: k32SetOptions.cpp,v 1.3 2000-09-22 09:22:38 bird Exp $
     1/* $Id: k32SetOptions.cpp,v 1.4 2000-12-11 06:22:15 bird Exp $
    22 *
    33 * k32SetOptions - Sets the changable options of win32k.sys the options.
     
    126126        if (TmpOptions.fREXXScript > 1)
    127127            return ERROR_INVALID_PARAMETER;
     128        if (TmpOptions.fDllFixes > 1)
     129            return ERROR_INVALID_PARAMETER;
    128130        if (TmpOptions.cbSwpHeapMax > (32768*1024) || TmpOptions.cbSwpHeapMax < options.cbSwpHeapInit)
    129131            return ERROR_INVALID_PARAMETER;
     
    154156        options.fJava       = TmpOptions.fJava;         /* Java flags. */
    155157        options.fNoLoader   = TmpOptions.fNoLoader;     /* No loader stuff. !FIXME! We should import / functions even if this flag is set!!! */
     158        options.fDllFixes   = TmpOptions.fDllFixes;     /* Enables the long DLL name and non .DLL extention fixes. */
    156159
    157160        options.cbSwpHeapMax = TmpOptions.cbSwpHeapMax; /* Maximum heapsize. */
Note: See TracChangeset for help on using the changeset viewer.