mirror of
https://github.com/reactos/reactos.git
synced 2025-07-04 12:41:22 +00:00
11 lines
316 B
C
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);
|