Hi!
I have made a type of a picture generator - a dll written in C++/MFC.
Now I need to make it compatible with LabView 6. The problem is that I
don't know what my exported function should return, nor what the
parameters should be. I have seen similar functions in IMAQ, which
somehow return an image in a void *image. Well, basically all I need
to know is what the function should look like and what it should
return.
int GetPicture(void *image , ..., ..., ??)
{
Fill void *image with what?
How should I allocate memory for the image pointer?
}
I want to be able to transfer a picture from this function and output
it in a LabView program.
Please, help me! 😃
/Chris, Sweden