mirror of
https://github.com/reactos/reactos.git
synced 2025-07-03 23:51:22 +00:00

* Separate the wrapper logging code to its own file, to facilitate further debugging in other classes. svn path=/branches/shell-experiments/; revision=62133
10 lines
316 B
C++
10 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);
|