Ignore:
Timestamp:
May 2, 2002, 5:17:26 PM (23 years ago)
Author:
umoeller
Message:

Misc fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/dosh.c

    r159 r161  
    12821282 *
    12831283 *@@added V0.9.16 (2002-01-13) [umoeller]
     1284 *@@changed V0.9.19 (2002-04-25) [umoeller]: added CDWFS (RSJ CD-Writer)
    12841285 */
    12851286
     
    14771478                fCheckEAs = TRUE;
    14781479            }
     1480            else if (!stricmp(pdi->szFileSystem, "CDWFS"))
     1481                    // V0.9.19 (2002-04-25) [umoeller]
     1482            {
     1483                pdi->lFileSystem = FSYS_CDWFS;
     1484                pdi->flDevice |= DFL_SUPPORTS_LONGNAMES;
     1485                fCheckLongnames = FALSE;
     1486                fCheckEAs = FALSE;
     1487            }
    14791488        }
    14801489        else
     
    15561565/*
    15571566 *@@ doshSetLogicalMap:
    1558  *       sets the mapping of logical floppy drives onto a single
    1559  *       physical floppy drive.
    1560  *       This means selecting either drive A: or drive B: to refer
    1561  *       to the physical drive.
     1567 *      sets the mapping of logical floppy drives onto a single
     1568 *      physical floppy drive.
     1569 *      This means selecting either drive A: or drive B: to refer
     1570 *      to the physical drive.
     1571 *
     1572 *      Paul explained this to me as follows:
     1573 *
     1574 *      "It is really very simple - in a single physical floppy
     1575 *      drive system,  you still have 2 logical floppy drives
     1576 *      A: and B:. This was primarily to  support disk copying
     1577 *      e.g. diskcopy a: b: on a single floppy system without
     1578 *      having to rewrite applications. Whenever the application
     1579 *      accessed the other logical drive, the user would get a
     1580 *      prompt from the OS to swap disks.
     1581 *
     1582 *      "These calls allow applications to bypass the prompt by
     1583 *      doing the mapping themselves. They just get/set which
     1584 *      logical drive is currently mapped to the physical drive.
     1585 *      This concept existed in DOS as well although the specifics
     1586 *      of how it was done escape me now.... actually I just
     1587 *      looked it up - the byte at 0:504h in low memory on
     1588 *      DOS controlled this (it doesn't work in VDMs)."
    15621589 *
    15631590 *@@added V0.9.6 (2000-11-24) [pr]
Note: See TracChangeset for help on using the changeset viewer.