MACRO
OMNI_BOOL2WSTR - Convert a bool value to a wide string.
SYNOPSIS top
A simple helper macro that can take boolean types and convert them to a
A simple helper macro that can take boolean types and convert them to a
"true" or "false" wide string value.
DESCRIPTION top
This macro is simple defined as the following:
This macro is simple defined as the following:
#define OMNI_BOOL2WSTR(b) (b ? L"true" : L"false")