Changeset 7794 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Feb 2, 2002, 3:19:01 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/wprocess.cpp
r7567 r7794 1 /* $Id: wprocess.cpp,v 1.14 1 2001-12-07 14:13:39sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.142 2002-02-02 14:19:01 sandervl Exp $ */ 2 2 3 3 /* … … 2033 2033 dprintf(("KERNEL32: GetProcAddress %s from %X returned %X\n", lpszProc, hModule, proc)); 2034 2034 else dprintf(("KERNEL32: GetProcAddress %x from %X returned %X\n", lpszProc, hModule, proc)); 2035 2036 SetLastError(ERROR_SUCCESS); 2035 2037 return proc; 2036 2038 } … … 2039 2041 dprintf(("KERNEL32: GetProcAddress %s from %X returned %X\n", lpszProc, hModule, proc)); 2040 2042 else dprintf(("KERNEL32: GetProcAddress %x from %X returned %X\n", lpszProc, hModule, proc)); 2043 SetLastError(ERROR_SUCCESS); 2041 2044 return(proc); 2042 2045 } … … 2069 2072 else { 2070 2073 dprintf(("GetVersionStruct; just loaded dll %s, but can't find it now!", lpszModName)); 2071 DebugInt3();2074 //// DebugInt3(); 2072 2075 } 2073 2076 FreeLibrary(hDll); … … 2098 2101 else { 2099 2102 dprintf(("GetVersionSize; just loaded dll %s, but can't find it now!", lpszModName)); 2100 DebugInt3();2103 //// DebugInt3(); 2101 2104 } 2102 2105 FreeLibrary(hDll);
Note:
See TracChangeset
for help on using the changeset viewer.