Changeset 7298 for trunk/src/kernel32/HandleManager.cpp
- Timestamp:
- Nov 8, 2001, 3:49:27 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r7151 r7298 1 /* $Id: HandleManager.cpp,v 1.7 3 2001-10-22 08:24:13phaller Exp $ */1 /* $Id: HandleManager.cpp,v 1.74 2001-11-08 14:49:26 phaller Exp $ */ 2 2 3 3 /* … … 58 58 #include "HMMMap.h" 59 59 #include "HMComm.h" 60 #include "HMParPort.h" 60 61 #include "HMToken.h" 61 62 #include "HMThread.h" … … 145 146 HMDeviceHandler *pHMNamedPipe; 146 147 HMDeviceHandler *pHMMailslot; 148 HMDeviceHandler *pHMParPort; /* parallel communication */ 147 149 148 150 ULONG ulHandleLast; /* index of last used handle */ … … 449 451 HMGlobals.pHMNamedPipe = new HMDeviceNamedPipeClass("\\\\PIPE\\"); 450 452 HMGlobals.pHMMailslot = new HMMailslotClass("\\MAILSLOT\\"); 453 HMGlobals.pHMParPort = new HMDeviceParPortClass("\\\\LPT\\"); 451 454 } 452 455 return (NO_ERROR); … … 496 499 if(HMGlobals.pHMStandard); 497 500 delete HMGlobals.pHMStandard; 501 if(HMGlobals.pHMParPort) 502 delete HMGlobals.pHMParPort; 498 503 499 504 return (NO_ERROR);
Note:
See TracChangeset
for help on using the changeset viewer.