- Timestamp:
- Dec 11, 2000, 7:44:35 AM (25 years ago)
- 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:02bird Exp $1 /* $Id: ldr.h,v 1.7 2000-12-11 06:44:35 bird Exp $ 2 2 * 3 3 * ldr - Our loader "subsystem" public header file. 4 4 * 5 * Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@ pmsc.no)5 * Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@mynd.no) 6 6 * 7 7 * Project Odin Software License can be found in LICENSE.TXT … … 125 125 } \ 126 126 } 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 */ 133 extern BOOL fldrOpenExtentionFix; 127 134 128 135 -
trunk/src/win32k/ldr/ldr.cpp
r4164 r4785 1 /* $Id: ldr.cpp,v 1. 8 2000-09-02 21:08:06bird Exp $1 /* $Id: ldr.cpp,v 1.9 2000-12-11 06:44:34 bird Exp $ 2 2 * 3 3 * ldr.cpp - Loader helpers. … … 52 52 * Loader State. (See ldr.h for more info.) 53 53 */ 54 ULONG ulLdrState = LDRSTATE_UNKNOWN; 54 ULONG ulLdrState = LDRSTATE_UNKNOWN; 55 56 57 /* 58 * ldrOpen extention fix flag. (See ldr.h, myldrOpenPath.cpp and myldrOpen.cpp.) 59 */ 60 BOOL fldrOpenExtentionFix = FALSE; 55 61 56 62
Note:
See TracChangeset
for help on using the changeset viewer.