Ignore:
Timestamp:
Oct 23, 2012, 2:08:12 AM (13 years ago)
Author:
dmik
Message:

kernel32: Stub RegisterWaitForSingleObject, UnregisterWaitEx, GetNativeSystemInfo.

Needed for Flash 11.4. Might require a complete implementation (this doesn't relate to
GetNativeSystemInfo which is simply an alias for GetNativeSystemInfo in the 32-bit
environment).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/stubs.cpp

    r22019 r22035  
    15911591}
    15921592
     1593/*****************************************************************************
     1594 * Name      : RegisterWaitForSingleObject KERNEL32.@
     1595 * Purpose   : Directs a thread in the thread pool to wait on the object.
     1596 */
     1597BOOL 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 */
     1614BOOL 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
    15931622} // extern "C"
    15941623
Note: See TracChangeset for help on using the changeset viewer.