Hi folks,
I used to call DLL from Visual C++ for my Smart Card reader/writer project as follows:
Inside .h file
------------------------------------
typedef U16 (*Autorize)
{
U8 *password;
}
public:
Authorize load;
HINSTANCE secure;
inside .c file
------------------------------------
secure = LoadLibrary("secure.dll");
load = (Authorize) GetProcAddress(secure,"DeviceActivePassword")
How can I call this in VB6 ? Thank you !
regards,
Larva
I used to call DLL from Visual C++ for my Smart Card reader/writer project as follows:
Inside .h file
------------------------------------
typedef U16 (*Autorize)
{
U8 *password;
}
public:
Authorize load;
HINSTANCE secure;
inside .c file
------------------------------------
secure = LoadLibrary("secure.dll");
load = (Authorize) GetProcAddress(secure,"DeviceActivePassword")
How can I call this in VB6 ? Thank you !
regards,
Larva