00001 /*++ 00002 00003 Copyright (c) 1998 Microsoft Corporation 00004 00005 Module Name: 00006 00007 wow64dbg.c 00008 00009 Abstract: 00010 00011 This module contains the WOW64 versions of the code for the debugger client. 00012 See dlluistb.c in ntos\dll for more function comments. 00013 00014 Author: 00015 00016 Michael Zoran (mzoran) 1-DEC-1998 00017 00018 Environment: 00019 00020 User Mode only 00021 00022 Revision History: 00023 00024 --*/ 00025 00026 #include "dbgdllp.h" 00027 #include "csrdll.h" 00028 #include "ldrp.h" 00029 #include "ntwow64.h" 00030 00031 NTSTATUS 00032 DbgUiConnectToDbg( VOID ) { 00033 return NtDbgUiConnectToDbg(); 00034 } 00035 00036 NTSTATUS 00037 DbgUiWaitStateChange ( 00038 OUT PDBGUI_WAIT_STATE_CHANGE StateChange, 00039 IN PLARGE_INTEGER Timeout OPTIONAL 00040 ) 00041 { 00042 return NtDbgUiWaitStateChange(StateChange, Timeout); 00043 } 00044 00045 NTSTATUS 00046 DbgUiContinue ( 00047 IN PCLIENT_ID AppClientId, 00048 IN NTSTATUS ContinueStatus 00049 ) 00050 { 00051 return NtDbgUiContinue(AppClientId, ContinueStatus); 00052 }