I'm using C++ BCB 6 and also BDS 2006 and trying to make a Unicode COM
object.
File New Application
Properties, Define _UNICODE
File New COM Object
Save everything
When I compile I get error "Cannot convert char* to const wchar_t*" at
these lines in the ...Impl.h file.
DECLARE_PROGID("UniCom.UniCom");
DECLARE_DESCRIPTION("");
I've tried making the text long
DECLARE_PROGID(L"UniCom.UniCom");
but then it fails in UpdateRegistry(BOOL bRegister).
Any ideas?
thanks
Roland