Changeset 161 for trunk/src/helpers/dosh.c
- Timestamp:
- May 2, 2002, 5:17:26 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/dosh.c
r159 r161 1282 1282 * 1283 1283 *@@added V0.9.16 (2002-01-13) [umoeller] 1284 *@@changed V0.9.19 (2002-04-25) [umoeller]: added CDWFS (RSJ CD-Writer) 1284 1285 */ 1285 1286 … … 1477 1478 fCheckEAs = TRUE; 1478 1479 } 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 } 1479 1488 } 1480 1489 else … … 1556 1565 /* 1557 1566 *@@ 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)." 1562 1589 * 1563 1590 *@@added V0.9.6 (2000-11-24) [pr]
Note:
See TracChangeset
for help on using the changeset viewer.