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