vote up 0 vote down star

I have a macro for a character string as follows:

#define APPNAME "MyApp"

Now I want to construct a wide string using this macro by doing something like:

const wchar_t *AppProgID = APPNAME L".Document";

However, this generates a "concatenating mismatched strings" compilation error.

Is there a way to convert the APPNAME macro to a wide string literal?

flag

60% accept rate

1 Answer

vote up 3 vote down check

Did you try

#define APPNAME "MyApp"

#define WIDEN2(x) L ## x
#define WIDEN(x) WIDEN2(x)

const wchar_t *AppProgID = WIDEN(APPNAME) L".Document";
link|flag
Yes, but I was wondering if there was a way of doing this without having to define two versions of the macro (wide and non-wide). – flashk Nov 6 at 20:19
Works like a charm, thanks! – flashk Nov 6 at 20:37
I've updated my answer to have use some common preprocessor technique to deal with strings. You can see more advanced usages if you peek at boost.org/doc/libs/… – Marcel Gosselin Nov 6 at 20:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.