Changeset 526 for trunk/dll


Ignore:
Timestamp:
Nov 4, 2006, 9:57:48 PM (19 years ago)
Author:
root
Message:

Add NDFS32 support

Location:
trunk/dll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/init.c

    r404 r526  
    1919  13 Jul 06 SHL Sync with current style
    2020  29 Jul 06 SHL Use xfgets
     21  22 Oct 06 GKY Add NDFS32 support
    2122
    2223***********************************************************************/
     
    250251    HPFS386 = "HPFS386";
    251252    CBSIFS = "CBSIFS";
     253    NDFS32 = "NDFS32";
    252254    /* end of strings */
    253255    memset(&RGBBLACK, 0, sizeof(RGB2));
  • trunk/dll/misc.c

    r489 r526  
    2121  16 Aug 06 SHL Comments
    2222  31 Aug 06 SHL disable_menuitem: rework args to match name - sheesh
     23  10 Oct 06 GKY Add NDFS32 support
    2324
    2425***********************************************************************/
     
    342343    if (!stricmp(FileSystem, HPFS) ||
    343344        !stricmp(FileSystem, JFS) ||
    344         !stricmp(FileSystem, FAT32) || !stricmp(FileSystem, HPFS386)) {
     345        !stricmp(FileSystem, FAT32) ||
     346        !stricmp(FileSystem, NDFS32) ||
     347        !stricmp(FileSystem, HPFS386)) {
    345348      hasCreateDT = TRUE;
    346349      hasAccessDT = TRUE;
Note: See TracChangeset for help on using the changeset viewer.