For several functions the VB call to the .DLL looks like this;
Code: Select all
Declare Sub TWAIN_ReadRow Lib "eztw32.dll" (ByVal hdib As Long, ByVal nRow As Long, ByRef prow As Any)
Code: Select all
DIB_ReadRow(hdib.l, nRow.l, prow.??) As "_DIB_ReadRow@12"
I have most everything working and it works really well so this is my first stumbling block in making this somewhat complete.
TIA
*EDIT*
The VB call is actually wrong it should not be TWAIN_ReadRow because that function does not exist, it does work as DIB_ReadRow though. It was a typo in their given example.