OMNI_BOOL2WSTR
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 "true" or "false" wide string value.

DESCRIPTION top

This macro is simple defined as the following:
#define OMNI_BOOL2WSTR(b) (b ? L"true" : L"false")

CONSIDERATIONS top

No special considerations

PLATFORM SPECIFIC top

No platform specific notes.

NOTES top

None.