Changeset 1844 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Nov 26, 1999, 1:05:20 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/wprocess.cpp
r1811 r1844 1 /* $Id: wprocess.cpp,v 1.5 0 1999-11-22 20:35:52sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.51 1999-11-26 00:05:20 sandervl Exp $ */ 2 2 3 3 /* … … 684 684 FARPROC WIN32API GetProcAddress(HMODULE hModule, LPCSTR lpszProc) 685 685 { 686 Win32 DllBase *winmod;686 Win32ImageBase *winmod; 687 687 FARPROC proc; 688 688 ULONG ulAPIOrdinal; 689 689 690 winmod = Win32DllBase::findModule((HINSTANCE)hModule); 690 if(hModule == 0 || hModule == -1 || (WinExe && hModule == WinExe->getInstanceHandle())) { 691 winmod = WinExe; 692 } 693 else winmod = (Win32ImageBase *)Win32DllBase::findModule((HINSTANCE)hModule); 694 691 695 if(winmod) { 692 696 ulAPIOrdinal = (ULONG)lpszProc;
Note:
See TracChangeset
for help on using the changeset viewer.