1 #ifndef __DBG_DUMP_TOOLS__H__
2 #define __DBG_DUMP_TOOLS__H__
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif //__cplusplus
7 
8 BOOLEAN
9 _cdecl
10 DbgDump_Printf(
11     PCHAR Format,
12     ...
13     );
14 
15 BOOLEAN
16 __stdcall
17 DbgDump_Print(
18     PCHAR Msg
19     );
20 
21 BOOLEAN
22 __stdcall
23 DbgDump_Printn(
24     PCHAR Msg,
25     ULONG Length
26     );
27 
28 BOOLEAN
29 __stdcall
30 DbgDump_Reconnect(VOID);
31 
32 VOID
33 __stdcall
34 DbgDump_Disconnect(VOID);
35 
36 VOID
37 __stdcall
38 DbgDump_SetAutoReconnect(
39     BOOLEAN AutoReconnect
40     );
41 
42 #ifdef __cplusplus
43 };
44 #endif //__cplusplus
45 
46 #endif //__DBG_DUMP_TOOLS__H__