Changeset 1855 for trunk/src/user32/user32.cpp
- Timestamp:
- Nov 27, 1999, 1:10:22 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/user32.cpp
r1849 r1855 1 /* $Id: user32.cpp,v 1.5 6 1999-11-26 17:06:08 cbratschiExp $ */1 /* $Id: user32.cpp,v 1.57 1999-11-27 00:10:21 sandervl Exp $ */ 2 2 3 3 /* … … 1571 1571 } 1572 1572 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 implement1581 1582 // @@@PH this is a temporary bugfix for WINFILE.EXE1583 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 1592 1573 /* Button Functions */ 1593 1574 … … 1874 1855 /* Message and Message Queue Functions */ 1875 1856 1876 /*****************************************************************************1877 * Name : BOOL WIN32API GetInputState1878 * Purpose : The GetInputState function determines whether there are1879 * 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 keyboard1883 * messages, the return value is TRUE.1884 * If the function fails, the return value is FALSE.1885 * Remark :1886 * Status : UNTESTED STUB1887 *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 DEBUG1901 WriteLog("USER32: GetQueueStatus\n");1902 #endif1903 return O32_GetQueueStatus(flags);1904 }1905 1857 1906 1858 /* Font and Text Functions */
Note:
See TracChangeset
for help on using the changeset viewer.