Ignore:
Timestamp:
Jul 3, 2009, 11:16:30 PM (16 years ago)
Author:
ydario
Message:

kernel32 implemented SetFilePointerEx and SetWaitableTimer.

File:
1 edited

Legend:

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

    r9975 r21324  
    668668}
    669669
     670/***********************************************************************
     671 *           SetWaitableTimer    (KERNEL32.@)
     672 */
     673BOOL WIN32API SetWaitableTimer( HANDLE handle, const LARGE_INTEGER *when, LONG period,
     674                              PTIMERAPCROUTINE callback, LPVOID arg, BOOL resume )
     675{
     676  dprintf(("KERNEL32: SetWaitableTimer(%08x,%08x,%08x) not implemented\n",
     677            handle, period, resume));
     678
     679  return FALSE;
     680}
     681
    670682/*****************************************************************************
    671683 * Name      : BOOL WIN32API DebugActiveProcess
Note: See TracChangeset for help on using the changeset viewer.