Home > C: Programming > Function Descriptions > | History back Previous chapter Next chapter Print |
is_GetTimeout |
uEye Camera Manual Version 3.80
is_GetTimeout
USB 2.0 GigE |
USB 2.0 GigE |
Syntax
INT is_GetTimeout (HIDS hCam, UINT nMode, UINT* pTimeout)
Description
Using is_GetTimeout(), you can read out user-defined timeout values from the uEye API.
For further information, please refer to the How To Proceed: Timeout Values for Image Capture section.
Input Parameters
hCam |
Camera handle |
nMode |
Selects the timeout value to be returned |
IS_TRIGGER_TIMEOUT |
Returns the timeout value in ms for triggered image capture |
pTimeout |
Pointer to the variable that holds the timeout value. Returns 0 if the default value of the uEye API is used. |
Return Values
IS_SUCCESS |
Function executed successfully |
IS_NO_SUCCESS |
General error message |
IS_NOT_SUPPORTED |
The value for nMode is invalid |
IS_INVALID_PARAMETER |
The pTimeout pointer is NULL |
Related Functions
Code Sample
// Return user-defined timeout UINT nTimeout; INT ret = is_GetTimeout(hCam, IS_TRIGGER_TIMEOUT, &nTimeout); |