A
Anonymous
I need to update a VB caption, with textual information - detailing
progress of processing being carried out in a C DLL.
Basically, I want my C function to be able to write messages back to VB,
which will then display the message in a label.
C prototype will be something like this:
#ifdef __cplusplus
extern "C" {
#endif
void writeGUIMessage(const char* msg);
#ifdef __cplusplus
};
#endif
How may I do this?
progress of processing being carried out in a C DLL.
Basically, I want my C function to be able to write messages back to VB,
which will then display the message in a label.
C prototype will be something like this:
#ifdef __cplusplus
extern "C" {
#endif
void writeGUIMessage(const char* msg);
#ifdef __cplusplus
};
#endif
How may I do this?