hi,
i m building the code in VC++6.0. (win32 unicode debug)
i m getting the following error in the RPC call
error C2664: 'UuidToStringW' : cannot convert parameter 2 from 'unsigned char ** ' to 'unsigned short ** '
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
the code snippet is
UUID * pUuid;
UCHAR * pszUuid;
SafeArrayAccessData (vtId.parray, (void **)&pUuid);
UuidToString (pUuid, &pszUuid);
what is the reason and how can it be resolved??