J
jis
Hi C++ gurus
I have a problem.
I am trying to call a function which is in another dll. but i have
problems when i run in release mode.it works good in debug mode, iam
using vc++ .
this is what iam doing
typedef void (CALLBACK *atc_crypt)(double Nbr);
atc_crypt crypt;
HINSTANCE hDLL = LoadLibrary("D:\\Programs\\crypt.dll");
crypt = GetProcAddress(HMODULE(hDLL ), "atc_crypt");
crypt(Nbr);
i get exception while running in release mode.
please help.
thnks
jis
I have a problem.
I am trying to call a function which is in another dll. but i have
problems when i run in release mode.it works good in debug mode, iam
using vc++ .
this is what iam doing
typedef void (CALLBACK *atc_crypt)(double Nbr);
atc_crypt crypt;
HINSTANCE hDLL = LoadLibrary("D:\\Programs\\crypt.dll");
crypt = GetProcAddress(HMODULE(hDLL ), "atc_crypt");
crypt(Nbr);
i get exception while running in release mode.
please help.
thnks
jis