Wide-Character Types

Microsoft RPC supports the wide-character type wchar_t. The wide-character type uses 2 bytes for each character. The ANSI C-language definition allows you to initialize long characters and long strings as:

wchar_t wcInitial = L'a';
wchar_t * pwszString = L"Hello, world";