Ignore:
Timestamp:
Jul 28, 2001, 8:04:35 PM (24 years ago)
Author:
sandervl
Message:

updates

File:
1 edited

Legend:

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

    r6339 r6397  
    1 /* $Id: user32.cpp,v 1.109 2001-07-15 14:58:07 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.110 2001-07-28 18:02:50 sandervl Exp $ */
    22
    33/*
     
    973973}
    974974
    975 /* Process and Thread Functions */
    976 
    977 //******************************************************************************
    978 //DWORD idAttach;   /* thread to attach */
    979 //DWORD idAttachTo; /* thread to attach to  */
    980 //BOOL fAttach; /* attach or detach */
    981 //******************************************************************************
    982 BOOL WIN32API AttachThreadInput(DWORD idAttach, DWORD idAttachTo, BOOL fAttach)
    983 {
    984   dprintf(("USER32:  AttachThreadInput, not implemented\n"));
    985   return(TRUE);
    986 }
    987 //******************************************************************************
    988 //******************************************************************************
    989 DWORD WIN32API WaitForInputIdle(HANDLE hProcess, DWORD dwTimeOut)
    990 {
    991   dprintf(("USER32: WaitForInputIdle %x %d\n", hProcess, dwTimeOut));
    992 
    993   if(fVersionWarp3) {
    994         Sleep(1000);
    995         return 0;       
    996   }
    997   else  return O32_WaitForInputIdle(hProcess, dwTimeOut);
    998 }
    999 
    1000975/* Help Functions */
    1001976
Note: See TracChangeset for help on using the changeset viewer.