Hi Everyone,

I have a quick question on C++ DLLs, I have made a DLL and an export API function using:

bool WINAPI Myfunc (unsigned short Arg1)
{
....Code
}

I now want to use it from an executable however I am not sure how to access the Myfunc. Can someone tell me how?

Thanks
Needaname16