Changeset 771 for trunk/dll/arccnrs.c


Ignore:
Timestamp:
Aug 6, 2007, 5:05:35 AM (18 years ago)
Author:
Gregg Young
Message:

Increase subject to 1024 reduce DosSleep times

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/arccnrs.c

    r766 r771  
    13511351      dcd->hwndObject = hwnd;           // pass back hwnd
    13521352      if (ParentIsDesktop(hwnd, dcd->hwndParent))
    1353         DosSleep(250);                  // Avoid race?
     1353        DosSleep(100); //05 Aug 07 GKY 250 // Avoid race?
    13541354    }
    13551355    return 0;
     
    14751475        if (IsFile(filename) == 1) {
    14761476          if (fViewChild && fArcStuffVisible)
    1477             DosSleep(100);              // Allow unzip session to finish closing 14 Mar 07 SHL
     1477            DosSleep(50); //05 Aug 07 GKY 100 // Allow unzip session to finish closing 14 Mar 07 SHL
    14781478          WinSendMsg(dcd->hwndCnr, UM_ENTER, MPFROMP(filename), MPVOID);
    14791479        }
     
    19011901                       (li->type == IDM_EDITTEXT && *editor) ||
    19021902                       (li->type == IDM_EDITBINARY && *bined)) {
    1903                 DosSleep(100);
     1903                DosSleep(50); //05 Aug 07 GKY 100
    19041904                ExecOnList(hwnd, ((li->type == IDM_VIEWTEXT) ? viewer :
    19051905                                  (li->type == IDM_VIEWBINARY) ? binview :
     
    19801980              WinSendMsg(dcd->hwndCnr, WM_COMMAND,
    19811981                         MPFROM2SHORT(IDM_COLLECTOR, 0), MPVOID);
    1982               DosSleep(128);
     1982              DosSleep(100); //05 Aug 07 GKY 128
    19831983              if (Collector) {
    19841984                if (!PostMsg(Collector, WM_COMMAND,
     
    20052005    if (dcd) {
    20062006      if (*dcd->workdir) {
    2007         DosSleep(33);
     2007        DosSleep(16); //05 Aug 07 GKY 33
    20082008        wipeallf("%s\\*", dcd->workdir);
    20092009        if (rmdir(dcd->workdir)) {
    2010           DosSleep(256);
     2010          DosSleep(100); //05 Aug 07 GKY 256
    20112011          wipeallf("%s\\*", dcd->workdir);
    20122012          rmdir(dcd->workdir);
     
    27932793            }
    27942794            WinSetWindowPos(hwndC, HWND_TOP, 0, 0, 0, 0, SWP_ACTIVATE);
    2795             DosSleep(128);
     2795            DosSleep(100); //05 Aug 07 GKY 128
    27962796          }
    27972797        }
Note: See TracChangeset for help on using the changeset viewer.