Changeset 1863 for trunk/dll/notebook.c


Ignore:
Timestamp:
Aug 23, 2015, 2:13:48 AM (10 years ago)
Author:
Gregg Young
Message:

Remove recurse scan code; fix A:\ drive not ready error caused by not moving the cursor from drive A:\ fast enough. Have Flesh remove pcis that have NullStr FileNames.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/notebook.c

    r1844 r1863  
    6868  25 May 15 GKY Auto open help only on first access of quick setting page during a session.
    6969  09 Aug 15 SHL Use RESTORE_STATE_...
     70  22 Aug 15 GKY Remove recurse scan code.
    7071
    7172***********************************************************************/
     
    167168BOOL fRealIdle;
    168169BOOL fRemoteBug;
    169 BOOL fRScanLocal;
    170 BOOL fRScanRemote;
    171 BOOL fRScanVirtual;
    172 BOOL fRScanSlow;
    173 BOOL fRScanNoWrite;
    174170BOOL fSaveState;
    175171BOOL fShowDriveOnly;
     
    508504    WinCheckButton(hwnd, CFGS_REMOTEBUG, fRemoteBug);
    509505    WinCheckButton(hwnd, CFGS_NOREMOVABLESCAN, fNoRemovableScan);
    510     WinCheckButton(hwnd, CFGS_RSCANLOCAL, fRScanLocal);
    511     WinCheckButton(hwnd, CFGS_RSCANREMOTE, fRScanRemote);
    512     WinCheckButton(hwnd, CFGS_RSCANVIRTUAL, fRScanVirtual);
    513     WinCheckButton(hwnd, CFGS_RSCANSLOW, fRScanSlow);
    514     WinCheckButton(hwnd, CFGS_RSCANNOWRITE, fRScanNoWrite);
    515506    WinCheckButton(hwnd, CFGS_EJECTREMOVABLESCAN, fEjectRemovableScan);
    516507    WinCheckButton(hwnd, CFGS_EJECTCDSCAN, fEjectCDScan);
     
    573564    fRemoteBug = WinQueryButtonCheckstate(hwnd, CFGS_REMOTEBUG);
    574565    PrfWriteProfileData(fmprof, appname, "RemoteBug", &fRemoteBug,
    575                         sizeof(BOOL));
    576     fRScanLocal = WinQueryButtonCheckstate(hwnd, CFGS_RSCANLOCAL);
    577     PrfWriteProfileData(fmprof, appname, "RScanLocal", &fRScanLocal,
    578                         sizeof(BOOL));
    579     fRScanRemote = WinQueryButtonCheckstate(hwnd, CFGS_RSCANREMOTE);
    580     PrfWriteProfileData(fmprof, appname, "RScanRemote", &fRScanRemote,
    581                         sizeof(BOOL));
    582     fRScanVirtual = WinQueryButtonCheckstate(hwnd, CFGS_RSCANVIRTUAL);
    583     PrfWriteProfileData(fmprof, appname, "RScanVirtual", &fRScanVirtual,
    584                         sizeof(BOOL));
    585     fRScanSlow = WinQueryButtonCheckstate(hwnd, CFGS_RSCANSLOW);
    586     PrfWriteProfileData(fmprof, appname, "RScanSlow", &fRScanSlow,
    587                         sizeof(BOOL));
    588     fRScanNoWrite = WinQueryButtonCheckstate(hwnd, CFGS_RSCANNOWRITE);
    589     PrfWriteProfileData(fmprof, appname, "RScanNoWrite", &fRScanNoWrite,
    590566                        sizeof(BOOL));
    591567    fNoRemovableScan = WinQueryButtonCheckstate(hwnd, CFGS_NOREMOVABLESCAN);
     
    31753151      fForceLower = FALSE;
    31763152      fEjectRemovableScan = FALSE;
    3177       fRScanLocal = FALSE;
    31783153      dsDirCnrDefault.detailslongname = FALSE;
    31793154      dsDirCnrDefault.detailssubject = FALSE;
     
    33543329      fDrivebarHelp = TRUE;
    33553330      fShowTarget = TRUE;
    3356       fRScanLocal = TRUE;
    3357       fRScanRemote = FALSE;
    3358       fRScanVirtual = FALSE;
    3359       fRScanSlow = FALSE;
    3360       fRScanNoWrite = FALSE;
    33613331      fEjectRemovableScan = TRUE;
    33623332      fEjectCDScan = FALSE;
     
    36703640      fDrivebarHelp = TRUE;
    36713641      fShowTarget = TRUE;
    3672       fRScanLocal = TRUE;
    3673       fRScanRemote = TRUE;
    3674       fRScanVirtual = FALSE;
    3675       fRScanSlow = FALSE;
    3676       fRScanNoWrite = FALSE;
    36773642      fEjectRemovableScan = TRUE;
    36783643      fEjectCDScan = TRUE;
Note: See TracChangeset for help on using the changeset viewer.