Hi all,

Code:
BSTR tmp = SysAllocString(L"Hello world");
It works! But

Code:
char mystr[] = "Hello world";
BSTR tmp = SysAllocString(mystr);
Does not compile. Any hint?

Thanks,

Cristina