Changeset 1480 for trunk/dll/valid.c


Ignore:
Timestamp:
Nov 22, 2009, 11:58:49 PM (16 years ago)
Author:
Gregg Young
Message:

Fix failure to correctly check for large file support in FindSwapperDat fall back code minor streamling. Add LVM.EXE to partition submenu. Stop using xDosQueryAppType where the file name it is passed is already a local stack variable. Correct a typo in several file header comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/valid.c

    r1444 r1480  
    3535                When these high codes were it text files they showed as hex in new view.
    3636  08 Mar 09 GKY Additional strings move to PCSZs
    37   12 Jul 09 GKY Add xDosQueryAppType and xDoxAlloc... to allow FM/2 to load in high memory
     37  12 Jul 09 GKY Add xDosQueryAppType and xDosAlloc... to allow FM/2 to load in high memory
    3838  22 Jul 09 GKY Consolidated driveflag setting code in DriveFlagsOne
    3939  22 Jul 09 GKY Check if drives support EAs add driveflag for this
     
    600600}
    601601
    602 BOOL IsExecutable(CHAR * filename)
     602BOOL IsExecutable(CHAR *filename)
    603603{
    604604  register CHAR *p;
     
    610610    p = strrchr(filename, '.');
    611611    if (p)
    612       ret = xDosQueryAppType(filename, &apptype);
     612      ret = DosQueryAppType(filename, &apptype);
    613613    else {
    614614
     
    617617      strcpy(fname, filename);
    618618      strcat(fname, ".");
    619       ret = xDosQueryAppType(fname, &apptype);
     619      ret = DosQueryAppType(fname, &apptype);
    620620    }
    621621    if (apptype & (FAPPTYP_DLL |
Note: See TracChangeset for help on using the changeset viewer.