L
Lance
Hi all,
I'm not even really sure how to phrase this question, so please forgive me.
Given an entry in a C++ header file like such:
/////
// Callback for displaying error and warning messages.
typedef void (_stdcall *GM_MessageCallbackFunc)
(
const char* aMessageText
);
/////
and function in the C++ header file like such:
/////
GM_DLL_EXPORTED void __stdcall GM_SetMessageCallback
(
GM_MessageCallbackFunc aCallbackFunc
);
/////
how do I translate this to VB2005 and then actually use it?
Lance
I'm not even really sure how to phrase this question, so please forgive me.
Given an entry in a C++ header file like such:
/////
// Callback for displaying error and warning messages.
typedef void (_stdcall *GM_MessageCallbackFunc)
(
const char* aMessageText
);
/////
and function in the C++ header file like such:
/////
GM_DLL_EXPORTED void __stdcall GM_SetMessageCallback
(
GM_MessageCallbackFunc aCallbackFunc
);
/////
how do I translate this to VB2005 and then actually use it?
Lance