Here is a snippet
myfunc (VARIANT *dmessage){
long len;
len=strlen(dmessage);
I get error :
cannot convert parameter 1 from 'struct tagVariant' to 'const char *'
===============
I want to pass a pointer to a function.
I have tried, below, but I got a differ error.
myfunc (char* dmessage){
long len;
len=strlen(dmessage)
Any suggestions?
TIA