Changeset 4785 for trunk/src


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

Added new state flag for extention fix in myldrOpen and myldrOpenPath.

Location:
trunk/src/win32k
Files:
2 edited

Legend:

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

    r4164 r4785  
    1 /* $Id: ldr.h,v 1.6 2000-09-02 21:08:02 bird Exp $
     1/* $Id: ldr.h,v 1.7 2000-12-11 06:44:35 bird Exp $
    22 *
    33 * ldr - Our loader "subsystem" public header file.
    44 *
    5  * Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
     5 * Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@mynd.no)
    66 *
    77 * Project Odin Software License can be found in LICENSE.TXT
     
    125125        }                          \
    126126    }
     127
     128
     129/*
     130 * This flag is used by myldrOpenPath to communicate to myldrOpen that
     131 * the .DLL extention should be removed before opening the file.
     132 */
     133extern BOOL fldrOpenExtentionFix;
    127134
    128135
  • trunk/src/win32k/ldr/ldr.cpp

    r4164 r4785  
    1 /* $Id: ldr.cpp,v 1.8 2000-09-02 21:08:06 bird Exp $
     1/* $Id: ldr.cpp,v 1.9 2000-12-11 06:44:34 bird Exp $
    22 *
    33 * ldr.cpp - Loader helpers.
     
    5252 * Loader State. (See ldr.h for more info.)
    5353 */
    54 ULONG          ulLdrState = LDRSTATE_UNKNOWN;
     54ULONG           ulLdrState = LDRSTATE_UNKNOWN;
     55
     56
     57/*
     58 * ldrOpen extention fix flag. (See ldr.h, myldrOpenPath.cpp and myldrOpen.cpp.)
     59 */
     60BOOL            fldrOpenExtentionFix = FALSE;
    5561
    5662
Note: See TracChangeset for help on using the changeset viewer.