Ignore:
Timestamp:
Sep 1, 1999, 9:12:23 PM (26 years ago)
Author:
phaller
Message:

Fix: header file cleanup (win32type.h)

File:
1 edited

Legend:

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

    r769 r780  
    1 /* $Id: HandleManager.cpp,v 1.19 1999-08-31 23:48:36 phaller Exp $ */
     1/* $Id: HandleManager.cpp,v 1.20 1999-09-01 19:12:16 phaller Exp $ */
    22
    33/*
     
    8383  struct _HMDEVICE *pNext;                /* pointer to next device in chain */
    8484
    85   PSZ             pszDeviceName;       /* name or alias of the pseudo-device */
     85  LPSTR           pszDeviceName;       /* name or alias of the pseudo-device */
    8686  HMDeviceHandler *pDeviceHandler;         /* handler for this pseudo-device */
    8787} HMDEVICE, *PHMDEVICE;
     
    133133
    134134                        /* get appropriate device handler by the device name */
    135 static HMDeviceHandler*  _Optlink _HMDeviceFind(PSZ pszDeviceName);
     135static HMDeviceHandler*  _Optlink _HMDeviceFind(LPSTR pszDeviceName);
    136136
    137137                               /* get next free handle from the handle table */
     
    156156 *****************************************************************************/
    157157
    158 static HMDeviceHandler *_HMDeviceFind (PSZ pszDeviceName)
     158static HMDeviceHandler *_HMDeviceFind (LPSTR pszDeviceName)
    159159{
    160160  PHMDEVICE pHMDevice;                     /* iterator over the device table */
     
    247247 *****************************************************************************/
    248248
    249 DWORD   HMDeviceRegister(PSZ             pszDeviceName,
     249DWORD   HMDeviceRegister(LPSTR           pszDeviceName,
    250250                         HMDeviceHandler *pDeviceHandler)
    251251{
     
    767767  else
    768768  {
    769     pDeviceHandler = _HMDeviceFind((PSZ)lpFileName);          /* find device */
     769    pDeviceHandler = _HMDeviceFind((LPSTR)lpFileName);        /* find device */
    770770
    771771    if (NULL == pDeviceHandler)                /* this name is unknown to us */
     
    900900
    901901
    902   pDeviceHandler = _HMDeviceFind((PSZ)lpFileName);            /* find device */
     902  pDeviceHandler = _HMDeviceFind((LPSTR)lpFileName);          /* find device */
    903903  if (NULL == pDeviceHandler)                  /* this name is unknown to us */
    904904  {
Note: See TracChangeset for help on using the changeset viewer.