Changeset 22035 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Oct 23, 2012, 2:08:12 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r22019 r22035 1591 1591 } 1592 1592 1593 /***************************************************************************** 1594 * Name : RegisterWaitForSingleObject KERNEL32.@ 1595 * Purpose : Directs a thread in the thread pool to wait on the object. 1596 */ 1597 BOOL WINAPI RegisterWaitForSingleObject( PHANDLE phNewWaitObject, 1598 HANDLE hObject, 1599 LPVOID Callback, 1600 PVOID Context, 1601 ULONG dwMilliseconds, 1602 ULONG dwFlags ) 1603 { 1604 dprintf(("KERNEL32: RegisterWaitForSingleObject() not implemented\n")); 1605 SetLastError(ERROR_NOT_SUPPORTED); 1606 return (FALSE); 1607 } 1608 1609 /***************************************************************************** 1610 * Name : UnregisterWaitEx KERNEL32.@ 1611 * Purpose : Cancels a registered wait operation issued by the 1612 * RegisterWaitForSingleObject funciton. 1613 */ 1614 BOOL WINAPI UnregisterWaitEx( HANDLE WaitHandle, 1615 HANDLE CompletionEvent ) 1616 { 1617 dprintf(("KERNEL32: UnregisterWaitEx() not implemented\n")); 1618 SetLastError(ERROR_NOT_SUPPORTED); 1619 return (FALSE); 1620 } 1621 1593 1622 } // extern "C" 1594 1623
Note:
See TracChangeset
for help on using the changeset viewer.