This is surely a really stupid question, but I need to do something (like) :
long my_function(char *str)
{
return MessageBox(str,TEXT("HELLO"),MB_OK);
}
Except MessageBoxW expects str to be a Wide and I can't find a conversion function ... or I'm missing something obvious here...?
Cheers,
Refractor