This is part of Family API which allow to create dual-os version of program runs under OS/2 and DOS
Note: This is legacy API call. It is recommended to use 32-bit equivalent
This call determines the current default drive for the requesting process.
DosQCurDisk (DriveNumber, LogicalDriveMap)
Value Definition' 1 A 2 B . .
Value Definition 0 The logical drive does not exist. 1 The logical drive exists.
#define INCL_DOSFILEMGR USHORT rc = DosQCurDisk(DriveNumber, LogicalDriveMap); PUSHORT DriveNumber; /* Default drive number (returned) */ PULONG LogicalDriveMap; /* Drive map area (returned) */ USHORT rc; /* return code */
EXTRN DosQCurDisk:FAR INCL_DOSFILEMGR EQU 1 PUSH@ WORD DriveNumber ;Default drive number (returned) PUSH@ DWORD LogicalDriveMap ;Drive map area (returned) CALL DosQCurDisk
Returns WORD
Text based on http://www.edm2.com/index.php/DosQCurDisk