User`s guide

FUNCTIONS
SDK SECTION 11
Page 146
GetNewFloatData
unsigned int WINAPI GetNewFloatData(float* arr, unsigned long size)
Description THIS FUNCTION IS RESERVED.
GetNumberADChannels
unsigned int WINAPI GetNumberADChannels(int* channels)
Description
As your Andor SDK system may be capable of operating with more than one A-D
converter, this function will tell you the number available.
Parameters
int* channels: number of allowed channels
Return
unsigned int
DRV_SUCCESS Number of channels returned.
See also
SetADChannel
GetNumberAmp
unsigned int WINAPI GetNumberAmp(int* amp)
Description
As your Andor SDK system may be capable of operating with more than one output
amplifier, this function will tell you the number available.
Parameters
int* amp: number of allowed channels
Return
unsigned int
DRV_SUCCESS Number of output amplifiers returned.
See also
SetOutputAmplifier
GetNumberAvailableImages
unsigned int WINAPI GetNumberAvailableImages (at_32* first, at_32* last)
Description
This function will return information on the number of available images in the circular
buffer. This information can be used with GetImages to retrieve a series of images. If any
images are overwritten in the circular buffer they no longer can be retrieved and the
information returned will treat overwritten images as not available.
Parameters
at_32* first: returns the index of the first available image in the circular buffer.
at_32* last: returns the index of the last available image in the circular buffer.
Return
unsigned int
DRV_SUCCESS
DRV_NOT_INITIALIZED
DRV_ERROR_ACK
DRV_NO_NEW_DATA
Number of acquired images returned
System not initialized
Unable to communicate with card
There is no new data yet
See also
GetImages, GetImages16, GetNumberNewImages.