Changeset 1354 for trunk/dll/init.c


Ignore:
Timestamp:
Dec 25, 2008, 11:43:34 PM (17 years ago)
Author:
Gregg Young
Message:

Added driveflags to over ride write verify for USB removable drives that fail when it is on (Ticket 323); A flag to prevent directory name from being broadcast to drives in the tree cnr prior to a recursive scan of the drive (causes dbl directory names Ticket 321) Add option for multithreaded recursive scan of user selected drives at startup (Ticket 322).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/init.c

    r1351 r1354  
    15491549  PrfQueryProfileData(fmprof, appname, "RemoteBug", &fRemoteBug, &size);
    15501550  size = sizeof(BOOL);
     1551  PrfQueryProfileData(fmprof, appname, "RScanLocal", &fRScanLocal, &size);
     1552  size = sizeof(BOOL);
     1553  PrfQueryProfileData(fmprof, appname, "RScanRemote", &fRScanRemote, &size);
     1554  size = sizeof(BOOL);
     1555  PrfQueryProfileData(fmprof, appname, "RScanVirtual", &fRScanVirtual, &size);
     1556  size = sizeof(BOOL);
     1557  PrfQueryProfileData(fmprof, appname, "RScanSlow", &fRScanSlow, &size);
     1558  size = sizeof(BOOL);
     1559  PrfQueryProfileData(fmprof, appname, "RScanNoWrite", &fRScanNoWrite, &size);
     1560  size = sizeof(BOOL);
    15511561  PrfQueryProfileData(fmprof, appname, "Drag&DropDlg", &fDragndropDlg, &size);
    15521562  size = sizeof(BOOL);
Note: See TracChangeset for help on using the changeset viewer.