I have a DLL program in C with visual c++ 5. In my DLL I have this fonction:

extern "C" __declspec(dllexport)
int EQeau(const char *szPath)
{
KEQeau EQeau;

return EQeau.Do(szPath);
}

How can I call it in visual basic.

Thanks.