Changeset 1402 for trunk/dll/valid.c


Ignore:
Timestamp:
Mar 14, 2009, 6:17:59 PM (16 years ago)
Author:
Gregg Young
Message:

Remove variable aurgs from docopy & unlinkf (not used); Move more strings to PCSZs and string table; Move PCSZs to compile time initialization; Fix hang on startup caused by a drive scan and a dircnr scan trying to update a drive in the tree at the same time (related to the "treeswitch options); Code cleanup mainly removal of old printfs, SayMsgs, DbgMsg and unneeded %s.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/valid.c

    r1398 r1402  
    3434  05 Jan 09 GKY Fix IsBinary to recognize values above \xc4 (maybe lower) as positive.
    3535                When these high codes were it text files they showed as hex in new view.
     36  08 Mar 09 GKY Additional strings move to PCSZs
    3637
    3738***********************************************************************/
     
    6667
    6768#pragma data_seg(GLOBAL2)
    68 CHAR *CDFS;
    69 CHAR *FAT32;
    70 CHAR *HPFS;
    71 CHAR *HPFS386;
    72 CHAR *ISOFS;
    73 CHAR *JFS;
    74 CHAR *NDFS32;
    75 CHAR *NTFS;
    76 CHAR *RAMFS;
     69PCSZ HPFS = "HPFS";
     70PCSZ JFS = "JFS";
     71PCSZ CDFS = "CDFS";
     72PCSZ ISOFS = "ISOFS";
     73PCSZ FAT32 = "FAT32";
     74PCSZ HPFS386 = "HPFS386";
     75PCSZ CBSIFS = "CBSIFS";
     76PCSZ NDFS32 = "NDFS32";
     77PCSZ RAMFS = "RAMFS";
     78PCSZ NTFS = "NTFS";
    7779BOOL fVerifyOffChecked[26];
    7880
Note: See TracChangeset for help on using the changeset viewer.