Changeset 10379 for trunk/src/user32/win32wndhandle.cpp
- Timestamp:
- Jan 11, 2004, 1:04:44 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wndhandle.cpp
r10256 r10379 1 /* $Id: win32wndhandle.cpp,v 1.1 8 2003-10-02 10:36:00sandervl Exp $ */1 /* $Id: win32wndhandle.cpp,v 1.19 2004-01-11 12:03:21 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Handle Management Code for OS/2 … … 48 48 { 49 49 if(globalwhandlecritsect.hmtxLock == 0) { 50 dprintf(("InitializeWindowHandles -> create shared critical section"));50 dprintf(("InitializeWindowHandles %x -> create shared critical section", &globalwhandlecritsect)); 51 51 DosInitializeCriticalSection(&globalwhandlecritsect, pszWndHandleSemName); 52 52 } 53 53 else { 54 dprintf(("InitializeWindowHandles -> access shared critical section"));54 dprintf(("InitializeWindowHandles %x -> access shared critical section", &globalwhandlecritsect)); 55 55 DosAccessCriticalSection(&globalwhandlecritsect, pszWndHandleSemName); 56 56 } … … 60 60 void FinalizeWindowHandles() 61 61 { 62 dprintf(("FinalizeWindowHandles %x", &globalwhandlecritsect)); 62 63 DosDeleteCriticalSection(&globalwhandlecritsect); 63 64 }
Note:
See TracChangeset
for help on using the changeset viewer.