I'm wondering if there's a way to use literal strings with ICU, I currently use wide character literal string like this:
u_strcpy( catColor, L"Yellow0" );
if (u_strcmp( catcolor, L"Yellow0" ) != 0)
CatColorIsYellow();
I've heard about UNICODE_STRING but the result looks the same than with L""