reactos/base/shell/rshell/wraplog.h
David Quintana b1290e6ab0 [RSHELL]
* CMenuBand: Implement rudimentary support for changing the hot item with the keyboard (up/down). The code can probable be simpler, and some corner cases need to be fixed, but it works.
* CMenuDeskBar: Attempt to redesign OnSelect to better match the windows behaviour, which is still mostly unknown.
* Make the log results more readable.
CORE-7881

svn path=/branches/shell-experiments/; revision=62262
2014-02-20 12:12:42 +00:00

12 lines
373 B
C++

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