reactos/drivers/storage/ide/uniata/inc/PostDbgMesg.h
Amine Khaldi 6c0c23cb53 [CMAKE]
- Sync with trunk head (r50270)
- This also reverts r49298.

svn path=/branches/cmake-bringup/; revision=50271
2011-01-03 00:33:31 +00:00

47 lines
537 B
C

#ifndef __DBG_DUMP_TOOLS__H__
#define __DBG_DUMP_TOOLS__H__
#ifdef __cplusplus
extern "C" {
#endif //__cplusplus
BOOLEAN
_cdecl
DbgDump_Printf(
PCHAR Format,
...
);
BOOLEAN
__stdcall
DbgDump_Print(
PCHAR Msg
);
BOOLEAN
__stdcall
DbgDump_Printn(
PCHAR Msg,
ULONG Length
);
BOOLEAN
__stdcall
DbgDump_Reconnect();
VOID
__stdcall
DbgDump_Disconnect();
VOID
__stdcall
DbgDump_SetAutoReconnect(
BOOLEAN AutoReconnect
);
#ifdef __cplusplus
};
#endif //__cplusplus
#endif //__DBG_DUMP_TOOLS__H__