Changeset 6401 for trunk/src/kernel32/winimagelx.cpp
- Timestamp:
- Jul 29, 2001, 9:02:35 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimagelx.cpp
r3993 r6401 1 /* $Id: winimagelx.cpp,v 1. 9 2000-08-11 10:56:19sandervl Exp $ */1 /* $Id: winimagelx.cpp,v 1.10 2001-07-29 19:00:32 sandervl Exp $ */ 2 2 3 3 /* … … 42 42 #include "dbglocal.h" 43 43 44 extern char *lpszCustomDllName; //windlllx.cpp 45 44 46 static BYTE dosHeader[] = { 45 47 0x4D, 0x5A, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x0B, 0x00, … … 66 68 { 67 69 APIRET rc; 70 char *name; 68 71 69 72 szFileName[0] = 0; 70 73 71 char *name = OSLibGetDllName(hinstance); 74 if(lpszCustomDllName) { 75 name = lpszCustomDllName; 76 } 77 else name = OSLibGetDllName(hinstance); 78 72 79 strcpy(szFileName, name); 73 80 strupr(szFileName);
Note:
See TracChangeset
for help on using the changeset viewer.