Language
|
Description
|
C/C++
|
BOOL UsbGetCurrentFrameNumber(IN USB_DEVICE_HANDLE hUsb,
| OUT PULONG FrameNumber );
|
|
Delphi
|
function UsbGetCurrentFrameNumber(hUsb : USB_DEVICE_HANDLE;
var CurrentFrameNumber : ULONG) : BOOL; stdcall;
|
VB
|
Function UsbGetCurrentFrameNumber (ByVal hUsb As Long, _
ByRef CurrentFrameNumber As Long) As Boolean
|
Parameters
| Specifies device handle. This handle can be obtained with OpenRapidUsb.
|
| Output parameter. Is equal to current frame number.
|
Return Value
| If function fails it return FALSE. To detect error call GetLastError function.
|
Description
| Use this function to retrieve current frame number.
|
|