Changeset 555 for trunk/dll/treecnr.c
- Timestamp:
- Mar 4, 2007, 6:01:14 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/treecnr.c
r552 r555 22 22 29 Dec 06 GKY Fixed menu gray out for remote drives (added variable "remote") 23 23 29 Dec 06 GKY Enabled edit of drive flags on "not ready" drives 24 18 Feb 07 GKY More drive type and i ncosupport24 18 Feb 07 GKY More drive type and icon support 25 25 26 26 ***********************************************************************/ … … 1774 1774 DRIVE_NOLOADICONS | DRIVE_NOLOADSUBJS | 1775 1775 DRIVE_NOLOADLONGS | DRIVE_INCLUDEFILES | 1776 DRIVE_SLOW ) | DRIVE_NOSTATS;1776 DRIVE_SLOW | DRIVE_NOSTATS); 1777 1777 1778 1778 if (removable == 1) … … 1783 1783 driveflags[x] |= DRIVE_ZIPSTREAM; 1784 1784 driveflags[x] &= (~DRIVE_REMOTE); 1785 } 1785 1786 if(!strcmp(FileSystem,NDFS32)) { 1786 1787 driveflags[x] |= DRIVE_VIRTUAL; … … 1793 1794 if (!strcmp(FileSystem, CDFS) || !strcmp(FileSystem, ISOFS)) 1794 1795 driveflags[x] |= (DRIVE_REMOVABLE | 1795 DRIVE_NOTWRITEABLE | DRIVE_CDROM); 1796 DRIVE_NOTWRITEABLE | DRIVE_CDROM); 1797 if(!strcmp(FileSystem,NTFS)) 1798 driveflags[x] |= DRIVE_NOTWRITEABLE; 1796 1799 if (strcmp(FileSystem, HPFS) && 1797 1800 strcmp(FileSystem, JFS) && … … 1801 1804 strcmp(FileSystem, FAT32) && 1802 1805 strcmp(FileSystem, NDFS32) && 1806 strcmp(FileSystem, NTFS) && 1803 1807 strcmp(FileSystem, HPFS386)) { 1804 1808 driveflags[x] |= DRIVE_NOLONGNAMES; 1805 }1806 1807 1809 } 1808 1810 if (driveflags[x] & DRIVE_CDROM)
Note:
See TracChangeset
for help on using the changeset viewer.