Changeset 7476 for trunk/src/kernel32/HandleManager.cpp
- Timestamp:
- Nov 29, 2001, 1:20:48 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r7474 r7476 1 /* $Id: HandleManager.cpp,v 1. 79 2001-11-28 23:33:34phaller Exp $ */1 /* $Id: HandleManager.cpp,v 1.80 2001-11-29 00:20:45 phaller Exp $ */ 2 2 3 3 /* … … 60 60 #include "HMComm.h" 61 61 #include "HMParPort.h" 62 #include "HMNul.h" 62 63 #include "HMToken.h" 63 64 #include "HMThread.h" … … 148 149 HMDeviceHandler *pHMMailslot; 149 150 HMDeviceHandler *pHMParPort; /* parallel communication */ 151 HMDeviceHandler *pHMNul; /* nul device */ 150 152 151 153 ULONG ulHandleLast; /* index of last used handle */ … … 488 490 HMGlobals.pHMMailslot = new HMMailslotClass("\\MAILSLOT\\"); 489 491 HMGlobals.pHMParPort = new HMDeviceParPortClass("\\\\LPT\\"); 492 HMGlobals.pHMNul = new HMDeviceNulClass("\\\\NUL\\"); 490 493 } 491 494 return (NO_ERROR); … … 537 540 if(HMGlobals.pHMParPort) 538 541 delete HMGlobals.pHMParPort; 542 if(HMGlobals.pHMNul) 543 delete HMGlobals.pHMNul; 539 544 540 545 return (NO_ERROR);
Note:
See TracChangeset
for help on using the changeset viewer.