Changeset 7068 for trunk/src/win32k/pe2lx/pe2lx.cpp
- Timestamp:
- Oct 15, 2001, 10:46:20 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/pe2lx/pe2lx.cpp
r6852 r7068 1 /* $Id: pe2lx.cpp,v 1.3 3 2001-09-28 07:43:02sandervl Exp $1 /* $Id: pe2lx.cpp,v 1.34 2001-10-15 20:46:20 sandervl Exp $ 2 2 * 3 3 * Pe2Lx class implementation. Ring 0 and Ring 3 … … 606 606 { 607 607 LXHdr.e32_mflags |= E32MODEXE; 608 #if 0 608 609 if ( pNtHdrs->FileHeader.Characteristics & IMAGE_FILE_RELOCS_STRIPPED /* Force location if possible. */ 609 610 || ulImageBase < 0x04000000 && ulImageBase + pNtHdrs->OptionalHeader.SizeOfImage < 0x04000000) 610 611 LXHdr.e32_mflags |= E32NOINTFIX; 612 #endif 611 613 } 612 614 … … 3915 3917 char *found; 3916 3918 3917 sprintf(searchstring, "%s.%d ", pszModuleName, ulFunctionOrdinal);3919 sprintf(searchstring, "%s.%d ", pszModuleName, ulFunctionOrdinal); 3918 3920 found = strstr(options.pszCustomExports, searchstring); 3919 3921 if(found) { … … 4068 4070 int ordinal; 4069 4071 4070 sprintf(searchstring, "%s.%s ", pszModuleName, pszFnName);4072 sprintf(searchstring, "%s.%s ", pszModuleName, pszFnName); 4071 4073 found = strstr(options.pszCustomExports, searchstring); 4072 4074 if(found) {
Note:
See TracChangeset
for help on using the changeset viewer.