reactos/base/shell/rshell/wraplog.h
David Quintana ea6aff329b [RSHELL]
* Separate the wrapper logging code to its own file, to facilitate further debugging in other classes.

svn path=/branches/shell-experiments/; revision=62133
2014-02-12 16:54:58 +00:00

11 lines
316 B
C++

#pragma once
void WrapLogOpen();
void WrapLogClose();
void __cdecl WrapLogMsg(_Printf_format_string_ const char* msg, ...);
void __cdecl WrapLogEnter(_Printf_format_string_ const char* msg, ...);
void __cdecl WrapLogExit(_Printf_format_string_ const char* msg, ...);
template <class T>
LPSTR Wrap(const T& value);