Changeset 552 for trunk/dll/misc.c


Ignore:
Timestamp:
Mar 1, 2007, 7:24:47 AM (18 years ago)
Author:
Gregg Young
Message:

font cleanup; new image and archiver masks; messages moved to string file; new drive flags including David's icons mostly working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/misc.c

    r551 r552  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2003, 2006 Steven H. Levine
     9  Copyright (c) 2003, 2007 Steven H. Levine
    1010
    1111  11 Jun 03 SHL Add JFS and FAT32 support
     
    2222  31 Aug 06 SHL disable_menuitem: rework args to match name - sheesh
    2323  10 Oct 06 GKY Add NDFS32 support
     24  18 Feb 07 GKY More drive type and drive icon support
    2425
    2526***********************************************************************/
     
    347348        !stricmp(FileSystem, JFS) ||
    348349        !stricmp(FileSystem, FAT32) ||
    349         !stricmp(FileSystem, NDFS32) || !stricmp(FileSystem, HPFS386)) {
     350        !stricmp(FileSystem, RAMFS) ||
     351        !stricmp(FileSystem, NDFS32) ||
     352        !stricmp(FileSystem, HPFS386)) {
    350353      hasCreateDT = TRUE;
    351354      hasAccessDT = TRUE;
    352355      hasLongNames = TRUE;
    353356    }
    354     else if (!strcmp(FileSystem, CDFS)) {
     357    else if (!strcmp(FileSystem, CDFS) || !strcmp(FileSystem, ISOFS)) {
    355358      hasCreateDT = TRUE;
    356359      hasAccessDT = FALSE;
Note: See TracChangeset for help on using the changeset viewer.