Have you defined UNICODE in project
how to do this? Can't find in help.
If using the Pelles C UI IDE then
#define WIN32_LEAN_AND_MEAN
/* #define NOCRYPT */
/* #define NOSERVICE */
/* #define NOMCX */
/* #define NOIME */
#define UNICODE
#define _UNICODE
#include <windows.h>
#include <windowsx.h>
is an example of where you might place the UNICODE defines. Be prepared to learn about
MultiByteToWideChar and
WideCharToMultiByte as well.
In Pelles C Help search for _UNICODE click on the topic '
<tchar.h> include files' you will find more information on using UNICODE
Also look at 'Program startup: the main and WinMain functions' in Pelles Help.
John Z