mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[SOUND] mmebuddy_debug.h: Match WCHAR type
This commit is contained in:
parent
b30fde3797
commit
7d532f8792
1 changed files with 7 additions and 6 deletions
|
@ -4,8 +4,9 @@
|
|||
/*
|
||||
Hacky debug macro
|
||||
*/
|
||||
// TODO: Use a string-safe function instead of wsprintf().
|
||||
|
||||
// FIXME: sdk\lib\...\mmebuddy compilation would fail: wsprintf() and MessageBox() are undefined!
|
||||
// FIXME: sdk\lib\...\mmebuddy compilation would fail: wsprintf() and MessageBoxW() are undefined!
|
||||
#if DBG && !defined(NDEBUG) // #if DBG
|
||||
|
||||
// Helper for SND_ASSERT().
|
||||
|
@ -14,14 +15,14 @@
|
|||
WCHAR dbg_popup_msg[1024], dbg_popup_title[256]; \
|
||||
wsprintf(dbg_popup_title, L"%hS(%d)", __FILE__, __LINE__); \
|
||||
wsprintf(dbg_popup_msg, __VA_ARGS__); \
|
||||
MessageBox(0, dbg_popup_msg, dbg_popup_title, MB_OK | MB_TASKMODAL); \
|
||||
MessageBoxW(NULL, dbg_popup_msg, dbg_popup_title, MB_OK | MB_TASKMODAL); \
|
||||
}
|
||||
|
||||
#define SND_ERR(...) \
|
||||
{ \
|
||||
WCHAR dbg_popup_msg[1024]; \
|
||||
wsprintf(dbg_popup_msg, __VA_ARGS__); \
|
||||
OutputDebugString(dbg_popup_msg); \
|
||||
OutputDebugStringW(dbg_popup_msg); \
|
||||
}
|
||||
|
||||
#define SND_ASSERT(condition) \
|
||||
|
@ -47,14 +48,14 @@
|
|||
{ \
|
||||
WCHAR dbg_popup_msg[1024]; \
|
||||
wsprintf(dbg_popup_msg, __VA_ARGS__); \
|
||||
OutputDebugString(dbg_popup_msg); \
|
||||
OutputDebugStringW(dbg_popup_msg); \
|
||||
}
|
||||
|
||||
#define SND_TRACE(...) \
|
||||
{ \
|
||||
WCHAR dbg_popup_msg[1024]; \
|
||||
wsprintf(dbg_popup_msg, __VA_ARGS__); \
|
||||
OutputDebugString(dbg_popup_msg); \
|
||||
OutputDebugStringW(dbg_popup_msg); \
|
||||
}
|
||||
|
||||
#define DUMP_WAVEHDR_QUEUE(sound_device_instance) \
|
||||
|
@ -74,7 +75,7 @@
|
|||
|
||||
#define SND_WARN(...) do {} while ( 0 )
|
||||
#define SND_TRACE(...) do {} while ( 0 )
|
||||
#define DUMP_WAVEHDR_QUEUE(condition) do {} while ( 0 )
|
||||
#define DUMP_WAVEHDR_QUEUE(sound_device_instance) do {} while ( 0 )
|
||||
|
||||
#endif // DBG && !defined(NDEBUG)
|
||||
|
||||
|
|
Loading…
Reference in a new issue