- Timestamp:
- Sep 1, 1999, 1:14:31 AM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r691 r768 1 /* $Id: HandleManager.cpp,v 1.1 7 1999-08-25 14:41:14phaller Exp $ */1 /* $Id: HandleManager.cpp,v 1.18 1999-08-31 23:14:02 phaller Exp $ */ 2 2 3 3 /* … … 1559 1559 } 1560 1560 1561 // @@@PH Problem: wrong class (base class) is called instead of 1562 // open32 class ?! Why ?! 1561 1563 pHMHandle = &TabWin32Handles[iIndex]; /* call device handler */ 1562 1564 dwResult = pHMHandle->pDeviceHandler->WaitForSingleObject(&pHMHandle->hmHandleData, -
trunk/src/kernel32/hmevent.h
r278 r768 1 /* $Id: hmevent.h,v 1. 1 1999-07-06 15:48:47phaller Exp $ */1 /* $Id: hmevent.h,v 1.2 1999-08-31 23:14:03 phaller Exp $ */ 2 2 3 3 /* … … 22 22 23 23 #include "HMDevice.h" 24 #include "HMO bjects.h"24 #include "HMOpen32.h" 25 25 26 26 … … 29 29 *****************************************************************************/ 30 30 31 class HMDeviceEventClass : public HMDevice KernelObjectClass31 class HMDeviceEventClass : public HMDeviceOpen32Class 32 32 { 33 33 public: 34 HMDeviceEventClass(LPCSTR lpDeviceName) : HMDevice KernelObjectClass(lpDeviceName) {}34 HMDeviceEventClass(LPCSTR lpDeviceName) : HMDeviceOpen32Class(lpDeviceName) {} 35 35 36 36 /* this is a handler method for calls to CreateEvent() */ -
trunk/src/kernel32/hmmutex.h
r278 r768 1 /* $Id: hmmutex.h,v 1. 1 1999-07-06 15:48:47phaller Exp $ */1 /* $Id: hmmutex.h,v 1.2 1999-08-31 23:14:03 phaller Exp $ */ 2 2 3 3 /* … … 22 22 23 23 #include "HMDevice.h" 24 #include "HMO bjects.h"24 #include "HMOpen32.h" 25 25 26 26 … … 29 29 *****************************************************************************/ 30 30 31 class HMDeviceMutexClass : public HMDevice KernelObjectClass31 class HMDeviceMutexClass : public HMDeviceOpen32Class 32 32 { 33 33 public: 34 HMDeviceMutexClass(LPCSTR lpDeviceName) : HMDevice KernelObjectClass(lpDeviceName) {}34 HMDeviceMutexClass(LPCSTR lpDeviceName) : HMDeviceOpen32Class(lpDeviceName) {} 35 35 36 36 /* this is a handler method for calls to CreateMutex() */ -
trunk/src/kernel32/hmsemaphore.h
r278 r768 1 /* $Id: hmsemaphore.h,v 1. 1 1999-07-06 15:48:48phaller Exp $ */1 /* $Id: hmsemaphore.h,v 1.2 1999-08-31 23:14:03 phaller Exp $ */ 2 2 3 3 /* … … 22 22 23 23 #include "HMDevice.h" 24 #include "HMO bjects.h"24 #include "HMOpen32.h" 25 25 26 26 … … 29 29 *****************************************************************************/ 30 30 31 class HMDeviceSemaphoreClass : public HMDevice KernelObjectClass31 class HMDeviceSemaphoreClass : public HMDeviceOpen32Class 32 32 { 33 33 public: 34 HMDeviceSemaphoreClass(LPCSTR lpDeviceName) : HMDevice KernelObjectClass(lpDeviceName) {}34 HMDeviceSemaphoreClass(LPCSTR lpDeviceName) : HMDeviceOpen32Class(lpDeviceName) {} 35 35 36 36 /* this is a handler method for calls to CreateSemaphore() */
Note:
See TracChangeset
for help on using the changeset viewer.