OMNI_BOOL2STRW
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.

DESCRIPTION top

This macro is simple defined as the following:

@code #define OMNI_BOOL2STR(b) (b ? L"true" : L"false") @code

CONSIDERATIONS top

No special considerations

PLATFORM SPECIFIC top

No platform specific notes.

NOTES top

None.