G
Guest
Hello,
I have a evc3.0 dll written to handle an internal camera. In the following
function from the dll:
HRESULT hpCamPReviewGetBGR16(HANDLE hCamera, LPBYTE pBuffer);
The 'pBuffer' is a pointer to a buffer to receive the preview frame. The
size of the buffer needs to be width X height X 2.
I need to know how to work with this in VB.NetCF?
Dim pBuffer(614400) as byte
hpCamPreviewGetBGR16(hCamera, pBuffer)
How do I pass the array?
Any thoughts would be greatly appreciated and thanks in advance.
I have a evc3.0 dll written to handle an internal camera. In the following
function from the dll:
HRESULT hpCamPReviewGetBGR16(HANDLE hCamera, LPBYTE pBuffer);
The 'pBuffer' is a pointer to a buffer to receive the preview frame. The
size of the buffer needs to be width X height X 2.
I need to know how to work with this in VB.NetCF?
Dim pBuffer(614400) as byte
hpCamPreviewGetBGR16(hCamera, pBuffer)
How do I pass the array?
Any thoughts would be greatly appreciated and thanks in advance.