请问如何调用这两个C++函数
正在用VB编写一个从CCD中读取图像的程序,用的是SONY提供的DLL,其中有两个函数是这
样的:
函数一
void* iidc_lockdata( HIIDC h, -1)
HIIDC h; handle to specify the camera
Return Values
If the function succeeds, the return value is pointer to frame buffer.
If the function fails, the return value is 0.
该函数应该返回的是一个指向内存的指针,可是为什么返回的是void呢?在VB中该如何声明并调用呀
函数二
bool iidc_attachbuffer( HIIDC h, void** param, long parambytes );
HIIDC h; handle to specify the camera
void** param; array of pointer to capturing buffer
long parambytes; the byte size of the parameter param
请问在VB中如何声明指向指针的指针(void**)呀?
多谢!苦等。