Ignore:
Timestamp:
Apr 18, 2001, 7:17:09 PM (24 years ago)
Author:
umoeller
Message:

Misc updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/dosh.h

    r59 r60  
    6464     ********************************************************************/
    6565
    66     VOID doshEnumDrives(PSZ pszBuffer,
    67                         const char *pcszFileSystem,
    68                         BOOL fSkipRemoveables);
     66    VOID XWPENTRY doshEnumDrives(PSZ pszBuffer,
     67                                 const char *pcszFileSystem,
     68                                 BOOL fSkipRemoveables);
     69    typedef VOID XWPENTRY DOSHENUMDRIVES(PSZ pszBuffer,
     70                                         const char *pcszFileSystem,
     71                                         BOOL fSkipRemoveables);
     72    typedef DOSHENUMDRIVES *PDOSHENUMDRIVES;
    6973
    7074    CHAR doshQueryBootDrive(VOID);
     
    7478    APIRET doshSetLogicalMap(ULONG ulLogicalDrive);
    7579
    76     APIRET doshQueryDiskFree(ULONG ulLogicalDrive,
    77                              double *pdFree);
    78 
    79     APIRET doshQueryDiskFSType(ULONG ulLogicalDrive,
    80                                PSZ pszBuf,
    81                                ULONG cbBuf);
     80    APIRET XWPENTRY doshQueryDiskSize(ULONG ulLogicalDrive, double *pdSize);
     81    typedef APIRET XWPENTRY DOSHQUERYDISKSIZE(ULONG ulLogicalDrive, double *pdSize);
     82    typedef DOSHQUERYDISKSIZE *PDOSHQUERYDISKSIZE;
     83
     84    APIRET XWPENTRY doshQueryDiskFree(ULONG ulLogicalDrive, double *pdFree);
     85    typedef APIRET XWPENTRY DOSHQUERYDISKFREE(ULONG ulLogicalDrive, double *pdFree);
     86    typedef DOSHQUERYDISKFREE *PDOSHQUERYDISKFREE;
     87
     88    APIRET XWPENTRY doshQueryDiskFSType(ULONG ulLogicalDrive, PSZ pszBuf, ULONG cbBuf);
     89    typedef APIRET XWPENTRY DOSHQUERYDISKFSTYPE(ULONG ulLogicalDrive, PSZ pszBuf, ULONG cbBuf);
     90    typedef DOSHQUERYDISKFSTYPE *PDOSHQUERYDISKFSTYPE;
    8291
    8392    APIRET doshIsFixedDisk(ULONG  ulLogicalDrive,
Note: See TracChangeset for help on using the changeset viewer.