- Timestamp:
- Mar 24, 2000, 8:25:34 PM (25 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmopen32.cpp
r2973 r3228 1 /* $Id: hmopen32.cpp,v 1.1 8 2000-03-02 19:17:21sandervl Exp $ */1 /* $Id: hmopen32.cpp,v 1.19 2000-03-24 19:25:32 sandervl Exp $ */ 2 2 3 3 /* … … 170 170 171 171 #if 1 172 //SvL: Open32 doesn't like this flag 173 if(pHMHandleData->dwShare & FILE_SHARE_DELETE) { 174 pHMHandleData->dwShare &= ~FILE_SHARE_DELETE; 175 } 176 172 177 hFile = O32_CreateFile(lpFileName, 173 178 pHMHandleData->dwAccess, … … 859 864 if(dwTimeout) { 860 865 endtime = O32_GetCurrentTime(); 861 dprintf(("KERNEL32: HandleManager::WaitForSingleObject delta = %x (rc=%x)", endtime - starttime, rc));862 } 863 else dprintf(("KERNEL32: HandleManager::WaitForSingleObject rc=%x", rc));866 dprintf(("KERNEL32: HandleManager::WaitForSingleObject %x delta = %x (rc=%x)", pHMHandleData->hHMHandle, endtime - starttime, rc)); 867 } 868 else dprintf(("KERNEL32: HandleManager::WaitForSingleObject %x rc=%x", pHMHandleData->hHMHandle, rc)); 864 869 return rc; 865 870 } -
trunk/src/kernel32/winimagepeldr.cpp
r3206 r3228 1 /* $Id: winimagepeldr.cpp,v 1.3 6 2000-03-23 19:23:48sandervl Exp $ */1 /* $Id: winimagepeldr.cpp,v 1.37 2000-03-24 19:25:32 sandervl Exp $ */ 2 2 3 3 /* … … 802 802 } 803 803 804 if(oh.ImageBase < 512*1024*1 24) {804 if(oh.ImageBase < 512*1024*1024) { 805 805 allocFlags = 0; 806 806 } -
trunk/src/kernel32/winimgres.cpp
r2865 r3228 1 /* $Id: winimgres.cpp,v 1.3 2 2000-02-23 00:57:40sandervl Exp $ */1 /* $Id: winimgres.cpp,v 1.33 2000-03-24 19:25:34 sandervl Exp $ */ 2 2 3 3 /* … … 271 271 } 272 272 if(HIWORD(id)) { 273 dprintf(("FindResource %s: resource %s (type %d, lang % d)", szModule, id, type, lang));274 } 275 else dprintf(("FindResource %s: resource %d (type %d, lang % d)", szModule, id, type, lang));273 dprintf(("FindResource %s: resource %s (type %d, lang %x)", szModule, id, type, lang)); 274 } 275 else dprintf(("FindResource %s: resource %d (type %d, lang %x)", szModule, id, type, lang)); 276 276 //ulRVAResourceSection contains the relative virtual address (relative to the start of the image) 277 277 //for the resource section (images loaded by the pe.exe and pe2lx/win32k)
Note:
See TracChangeset
for help on using the changeset viewer.