Hi guys,
I want set any type of value iun VARIANT const pointer but vain, i am facing a compile time error. see my code below.
VARIANT *v=NULL;
v->bstrVal = "Video.Bin";
another try
VARIANT *pValue;
//BSTR *fileName;
const char* pName;
pName = "Video.bin";
pValue = pName;
pConfig->SetValue(&ESF_FileName,pValue);
pModuleConfig->CommitChanges(v);