mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
b1290e6ab0
* 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
11 lines
373 B
C++
11 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);
|