Hi, 
I have a Problem. I must convert an Char to an wchar_t. 
My Sytem: Code::Blocks 1 RC2 + MinGW + WindowsXP
void DLL_EXPORT * DEMOText(
                                char Text,
                                int iTopX, int iTopY, int iBotX, int iBotY,
                                bool boBorder)
{
// Convert the char(Text) to an wchar_t 


?
       return (void *)guienv->addStaticText(
            Text, //<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< this must a wchar_t
            rect<int>(iTopX, iTopY, iBotX+iTopX, iBotY+iTopY),
            boBorder);
}
Sorry for my bad English :-)
Can someone help me ?
Thanks
Schoppy