Ignore:
Timestamp:
Jul 15, 2001, 4:58:12 PM (24 years ago)
Author:
sandervl
Message:

Do not use imports not available in Warp 3's PMWINX (WaitForInputIdle & GetAsyncKeyState)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/user32.cpp

    r6328 r6339  
    1 /* $Id: user32.cpp,v 1.108 2001-07-14 09:21:46 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.109 2001-07-15 14:58:07 sandervl Exp $ */
    22
    33/*
     
    4949#include <win32wnd.h>
    5050#include <winuser.h>
     51#include "initterm.h"
    5152
    5253#define DBG_LOCALLOG    DBG_user32
     
    990991  dprintf(("USER32: WaitForInputIdle %x %d\n", hProcess, dwTimeOut));
    991992
    992   return O32_WaitForInputIdle(hProcess, dwTimeOut);
     993  if(fVersionWarp3) {
     994        Sleep(1000);
     995        return 0;       
     996  }
     997  else  return O32_WaitForInputIdle(hProcess, dwTimeOut);
    993998}
    994999
Note: See TracChangeset for help on using the changeset viewer.