Changeset 550 for trunk/src/kernel32/KERNEL32.CPP
- Timestamp:
- Aug 18, 1999, 7:18:01 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/KERNEL32.CPP
r532 r550 1 /* $Id: KERNEL32.CPP,v 1.1 4 1999-08-17 17:04:51sandervl Exp $ */1 /* $Id: KERNEL32.CPP,v 1.15 1999-08-18 17:17:59 sandervl Exp $ */ 2 2 3 3 /* … … 62 62 return HMCloseHandle(hHandle); 63 63 } 64 65 66 //******************************************************************************67 HANDLE WIN32API GetModuleHandleA(LPCTSTR lpszModule)68 {69 HANDLE hMod;70 71 hMod = OS2iGetModuleHandleA( (PSZ) lpszModule);72 eprintf(("KERNEL32: GetModuleHandle %s returned %X\n", lpszModule, hMod));73 return(hMod);74 }75 //******************************************************************************76 //******************************************************************************77 HMODULE WIN32API GetModuleHandleW(LPCWSTR arg1)78 {79 HMODULE rc;80 char *astring;81 82 astring = UnicodeToAsciiString((LPWSTR)arg1);83 rc = O32_GetModuleHandle(astring);84 dprintf(("KERNEL32: OS2GetModuleHandleW %s returned %X\n", astring, rc));85 FreeAsciiString(astring);86 return(rc);87 }88 //******************************************************************************89 64 //****************************************************************************** 90 65 HANDLE WIN32API GetStdHandle(DWORD fdwDevice)
Note:
See TracChangeset
for help on using the changeset viewer.