Ignore:
Timestamp:
Nov 27, 1999, 1:10:22 AM (26 years ago)
Author:
sandervl
Message:

several fixes + changes

File:
1 edited

Legend:

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

    r1849 r1855  
    1 /* $Id: user32.cpp,v 1.56 1999-11-26 17:06:08 cbratschi Exp $ */
     1/* $Id: user32.cpp,v 1.57 1999-11-27 00:10:21 sandervl Exp $ */
    22
    33/*
     
    15711571}
    15721572
    1573 /* Synchronization Functions */
    1574 ODINFUNCTION5(DWORD,MsgWaitForMultipleObjects,DWORD,    nCount,
    1575                                               LPHANDLE, pHandles,
    1576                                               BOOL,     fWaitAll,
    1577                                               DWORD,    dwMilliseconds,
    1578                                               DWORD,    dwWakeMask)
    1579 {
    1580   // @@@PH that's a really difficult function to implement
    1581 
    1582   // @@@PH this is a temporary bugfix for WINFILE.EXE
    1583   if (nCount == 0)
    1584   {
    1585     // only listens to incoming thread messages.
    1586     return (WAIT_OBJECT_0);
    1587   }
    1588 
    1589   return O32_MsgWaitForMultipleObjects(nCount,pHandles,fWaitAll,dwMilliseconds,dwWakeMask);
    1590 }
    1591 
    15921573/* Button Functions */
    15931574
     
    18741855/* Message and Message Queue Functions */
    18751856
    1876 /*****************************************************************************
    1877  * Name      : BOOL WIN32API GetInputState
    1878  * Purpose   : The GetInputState function determines whether there are
    1879  *             mouse-button or keyboard messages in the calling thread's message queue.
    1880  * Parameters:
    1881  * Variables :
    1882  * Result    : If the queue contains one or more new mouse-button or keyboard
    1883  *               messages, the return value is TRUE.
    1884  *             If the function fails, the return value is FALSE.
    1885  * Remark    :
    1886  * Status    : UNTESTED STUB
    1887  *
    1888  * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
    1889  *****************************************************************************/
    1890 BOOL WIN32API GetInputState(VOID)
    1891 {
    1892   dprintf(("USER32:GetInputState () not implemented.\n"));
    1893 
    1894   return (FALSE);
    1895 }
    1896 //******************************************************************************
    1897 //******************************************************************************
    1898 DWORD WIN32API GetQueueStatus( UINT flags)
    1899 {
    1900 #ifdef DEBUG
    1901     WriteLog("USER32:  GetQueueStatus\n");
    1902 #endif
    1903     return O32_GetQueueStatus(flags);
    1904 }
    19051857
    19061858/* Font and Text Functions */
Note: See TracChangeset for help on using the changeset viewer.