A - 8 – INFICON CMS5000 Monitoring System User Manual

Page 260

Advertising
background image

A - 8

IP

N 07

4-

50

8-

P1

C

CMS5000 Operating Manual

* Returns
* See Function Return Codes.
*
* Example
* CMS5000_Get_Result_Info( CMS5000_handle , &result_info );
*
******************************************************************************/
CMS5000API int CMS5000_Get_Result_Info (CMS5000_HANDLE CMS5000, ResultInfo*
result_info);

/******************************************************************************
* CMS5000_Get_Result
*
* Retrieves Search Result for an unknown. This function can be used to iterate
* through the array of found compounds.
*
* Parameters
* CMS5000 : [ IN] Handle to a CMS5000
* search_result : [OUT] Pointer to a SearchResult stuct.
* num : [ IN] Index of specific SearchResult within the array of found
* compounds. The number of found compounds is provide by
* ResultInfo.SearchCount, obtained through CMS5000_Get_Result_Info().
* Valid range: 0 <= 'num'< SearchCount-1 [for SearchCount > 0]
* Returns
* See Function Return Codes.
*
* Example
* CMS5000_Get_Result( CMS5000_handle ,&search_result, num );
*
******************************************************************************/
CMS5000API int CMS5000_Get_Result (CMS5000_HANDLE CMS5000, SearchResult*
search_result, int num);

/******************************************************************************
* CMS5000_Get_All_Results
*
* Retrieves a pointer to a list of SearchResult struct.
*
* Parameters
* CMS5000 : [ IN] Handle to a CMS5000
* search_results[] : [OUT] Array of SearchResult structs.
* max_results : [ IN] Max number of results your buffer can hold.
* num_results : [ IN] Number of actual results recieved from CMS5000.
*
* Returns
* See Function Return Codes.
*
* Example
* CMS5000_Get_All_Results( CMS5000_handle, &search_result_buffer, 100, &num_results );
*
******************************************************************************/

Advertising