Ignore:
Timestamp:
Nov 8, 2001, 3:49:27 PM (24 years ago)
Author:
phaller
Message:

parport support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/HandleManager.cpp

    r7151 r7298  
    1 /* $Id: HandleManager.cpp,v 1.73 2001-10-22 08:24:13 phaller Exp $ */
     1/* $Id: HandleManager.cpp,v 1.74 2001-11-08 14:49:26 phaller Exp $ */
    22
    33/*
     
    5858#include "HMMMap.h"
    5959#include "HMComm.h"
     60#include "HMParPort.h"
    6061#include "HMToken.h"
    6162#include "HMThread.h"
     
    145146  HMDeviceHandler        *pHMNamedPipe;
    146147  HMDeviceHandler        *pHMMailslot;
     148  HMDeviceHandler        *pHMParPort;              /* parallel communication */
    147149
    148150  ULONG         ulHandleLast;                   /* index of last used handle */
     
    449451    HMGlobals.pHMNamedPipe  = new HMDeviceNamedPipeClass("\\\\PIPE\\");
    450452    HMGlobals.pHMMailslot   = new HMMailslotClass("\\MAILSLOT\\");
     453    HMGlobals.pHMParPort    = new HMDeviceParPortClass("\\\\LPT\\");
    451454  }
    452455  return (NO_ERROR);
     
    496499  if(HMGlobals.pHMStandard);
    497500    delete HMGlobals.pHMStandard;
     501  if(HMGlobals.pHMParPort)
     502    delete HMGlobals.pHMParPort;
    498503
    499504  return (NO_ERROR);
Note: See TracChangeset for help on using the changeset viewer.