Changeset 555 for trunk/dll/treecnr.c


Ignore:
Timestamp:
Mar 4, 2007, 6:01:14 AM (18 years ago)
Author:
Gregg Young
Message:

Added NTFS support (read only); minor dive icon code cleanup; update help files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/treecnr.c

    r552 r555  
    2222  29 Dec 06 GKY Fixed menu gray out for remote drives (added variable "remote")
    2323  29 Dec 06 GKY Enabled edit of drive flags on "not ready" drives
    24   18 Feb 07 GKY More drive type and inco support
     24  18 Feb 07 GKY More drive type and icon support
    2525
    2626***********************************************************************/
     
    17741774                                DRIVE_NOLOADICONS | DRIVE_NOLOADSUBJS |
    17751775                                DRIVE_NOLOADLONGS | DRIVE_INCLUDEFILES |
    1776                                 DRIVE_SLOW) | DRIVE_NOSTATS;
     1776                                DRIVE_SLOW | DRIVE_NOSTATS);
    17771777
    17781778              if (removable == 1)
     
    17831783                driveflags[x] |= DRIVE_ZIPSTREAM;
    17841784                driveflags[x] &= (~DRIVE_REMOTE);
     1785              }
    17851786              if(!strcmp(FileSystem,NDFS32)) {
    17861787                driveflags[x] |= DRIVE_VIRTUAL;
     
    17931794              if (!strcmp(FileSystem, CDFS) || !strcmp(FileSystem, ISOFS))
    17941795                driveflags[x] |= (DRIVE_REMOVABLE |
    1795                                   DRIVE_NOTWRITEABLE | DRIVE_CDROM);
     1796                                  DRIVE_NOTWRITEABLE | DRIVE_CDROM);
     1797              if(!strcmp(FileSystem,NTFS))
     1798                driveflags[x] |= DRIVE_NOTWRITEABLE;
    17961799              if (strcmp(FileSystem, HPFS) &&
    17971800                  strcmp(FileSystem, JFS) &&
     
    18011804                  strcmp(FileSystem, FAT32) &&
    18021805                  strcmp(FileSystem, NDFS32) &&
     1806                  strcmp(FileSystem, NTFS) &&
    18031807                  strcmp(FileSystem, HPFS386)) {
    18041808                driveflags[x] |= DRIVE_NOLONGNAMES;
    1805               }
    1806 
    18071809              }
    18081810              if (driveflags[x] & DRIVE_CDROM)
Note: See TracChangeset for help on using the changeset viewer.