Hi Everyone,
Basically I want to call methods of my C++ dll from VBscript. I searched for it in google, but everywhere I got solutions regarding .net dll rather than c++ dlls.
An example of one of my C++ methods is:
Now, i want to call this method 'test' from a VBscript. I would really be grateful if I would get some help regarding this.
Thanks in advance,
sattu
Basically I want to call methods of my C++ dll from VBscript. I searched for it in google, but everywhere I got solutions regarding .net dll rather than c++ dlls.
An example of one of my C++ methods is:
Code:
extern "C" __declspec(dllexport) int __cdecl test()
{
return 20;
}
Now, i want to call this method 'test' from a VBscript. I would really be grateful if I would get some help regarding this.
Thanks in advance,
sattu