Changeset 2280 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Dec 31, 1999, 11:47:12 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r2229 r2280 1 /* $Id: stubs.cpp,v 1.1 6 1999-12-28 19:16:35sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.17 1999-12-31 10:47:11 sandervl Exp $ */ 2 2 3 3 /* … … 607 607 608 608 609 /*****************************************************************************610 * Name : BOOL WIN32API ContinueDebugEvent611 * Purpose : The ContinueDebugEvent function enables a debugger to continue612 * a thread that previously reported a debugging event.613 * Parameters: DWORD dwProcessId process to continue614 DWORD dwThreadId thread to continue615 DWORD dwContinueStatus continuation status616 * Variables :617 * Result : If the function succeeds, the return value is nonzero.618 * If the function fails, the return value is zero.619 * To get extended error information, call GetLastError.620 * Remark : Only the thread that created dwProcessId with the CreateProcess621 * function can call ContinueDebugEvent.622 * After the ContinueDebugEvent function succeeds, the specified623 * thread continues. Depending on the debugging event previously624 * reported by the thread, different actions occur. If the continued625 * thread previously reported an EXIT_THREAD_DEBUG_EVENT626 * debugging event, ContinueDebugEvent closes the handle the627 * debugger has to the thread. If the continued thread previously628 * reported an EXIT_PROCESS_DEBUG_EVENT debugging event,629 * ContinueDebugEvent closes the handles the debugger has to the630 * process and to the thread.631 * Status : UNTESTED STUB632 *633 * Author : Markus Montkowski [Thu, 1998/05/19 11:46]634 *****************************************************************************/635 636 BOOL WIN32API ContinueDebugEvent( DWORD dwProcessId, DWORD dwThreadId,637 DWORD dwContinueStatus)638 {639 640 dprintf(("KERNEL32: ContinueDebugEvent(%08x,%08x,%08x)not implemented\n",641 dwProcessId, dwThreadId, dwContinueStatus642 ));643 644 return (FALSE);645 }646 609 647 610 /***************************************************************************** … … 2870 2833 } 2871 2834 2872 2873 /*****************************************************************************2874 * Name : BOOL WaitForDebugEvent2875 * Purpose : The WaitForDebugEvent function waits for a debugging event to2876 * occur in a process being debugged.2877 * Parameters: LPDEBUG_EVENT lpde address of structure for event information2878 * DWORD dwTimeout number of milliseconds to wait for event2879 * Variables :2880 * Result : TRUE / FALSE2881 * Remark :2882 * Status : UNTESTED STUB2883 *2884 * Author : Patrick Haller [Mon, 1998/06/15 08:00]2885 *****************************************************************************/2886 2887 BOOL WIN32API WaitForDebugEvent(LPDEBUG_EVENT lpde,2888 DWORD dwTimeout)2889 {2890 dprintf(("KERNEL32: WaitForDebugEvent(%08xh,%08xh) not implemented.\n",2891 lpde,2892 dwTimeout));2893 2894 return (FALSE);2895 }2896 2897 2898 2835 /***************************************************************************** 2899 2836 * Name : BOOL WaitNamedPipeA
Note:
See TracChangeset
for help on using the changeset viewer.