Changeset 771 for trunk/dll/newview.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/newview.c

    r593 r771  
    955955                                               NEWVIEW_STATUS1),
    956956                               GetPString(IDS_NOMATCHINGTEXT));
    957               DosSleep(1500);
     957              DosSleep(150);//05 Aug 07 GKY 1500
    958958              PostMsg(hwnd, UM_RESCAN, MPVOID, MPVOID);
    959959              PostMsg(hwnd, UM_SETUP4, MPVOID, MPVOID);
     
    10591059                                               NEWVIEW_STATUS1),
    10601060                               GetPString(IDS_NVNOLINESSELTEXT));
    1061               DosSleep(1500);
     1061              DosSleep(150);//05 Aug 07 GKY 1500
    10621062            }
    10631063          }
     
    17951795        else {
    17961796          WinSendMsg(hwnd, UM_SETUP5, MPVOID, MPVOID);
    1797           DosSleep(32L);
     1797          DosSleep(16); //05 Aug 07 GKY 32
    17981798          return (MRESULT) 1;
    17991799        }
     
    21482148            ((SHORT) ptl.y < 0 || ptl.y > (Rectl.yTop - Rectl.yBottom))) {
    21492149          PostMsg(hwnd, UM_MOUSEMOVE, mp1, MPVOID);
    2150           DosSleep(1L);
     2150          DosSleep(1);
    21512151        }
    21522152      }
     
    21622162      WinQueryWindowRect(hwnd, &Rectl);
    21632163      WinQueryPointerPos(HWND_DESKTOP, &ptl);
    2164       WinMapWindowPoints(HWND_DESKTOP, hwnd, &ptl, 1L);
     2164      WinMapWindowPoints(HWND_DESKTOP, hwnd, &ptl, 1);
    21652165      if ((SHORT) ptl.y == (SHORT) SHORT2FROMMP(mp1) &&
    21662166          (SHORT) ptl.x == (SHORT) SHORT1FROMMP(mp1) &&
    21672167          ((SHORT) ptl.y < 0 || ptl.y > (Rectl.yTop - Rectl.yBottom))) {
    2168         DosSleep(1L);
     2168        DosSleep(1);
    21692169        PostMsg(hwnd, WM_MOUSEMOVE, mp1, MPFROM2SHORT(TRUE, 0));
    21702170      }
     
    37583758        ad->stopflag = 1;
    37593759        if (ad->ScanSem) {
    3760           DosRequestMutexSem(ad->ScanSem, 15000L);
     3760          DosRequestMutexSem(ad->ScanSem, 15000);
    37613761          DosCloseMutexSem(ad->ScanSem);
    37623762        }
    37633763        if (ad->busy)
    3764           DosSleep(128L);
     3764          DosSleep(100); //05 Aug 07 GKY 128
    37653765        if (ad->hps) {
    37663766          GpiDeleteSetId(ad->hps, FIXED_FONT_LCID);
Note: See TracChangeset for help on using the changeset viewer.