Hi Viktor,

Okay, I'll mark them with TEXT(), is this alright?

[ _T() is problematic as it needs yet another Windows
header. But, TEXT() seems to work just as well for chars. ]

Okay but they are very simple macros .-

#ifdef UNICODE
#   define _TEXT(s) L##s
#else
#   define _TEXT(s) s
#endif
#define _T(x) _TEXT(x)

or .-

#define HB_TEXT(x) TEXT(x)
#define HB_T(x)    TEXT(x)

Best regards,
Xavi
_______________________________________________
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to