-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpcoclhs.h
More file actions
31 lines (24 loc) · 687 Bytes
/
pcoclhs.h
File metadata and controls
31 lines (24 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef _PCOCLHS_H_
#define _PCOCLHS_H_
#ifdef __cplusplus
extern "C"
{
#endif
#include "pco.h"
#include "pco/include/clhs/defs.h"
#include "pco/include/clhs/sc2_defs.h"
#include "pco/include/clhs/PCO_err.h"
#ifndef SISODIR5
#define SISODIR5 "/opt/SiliconSoftware/Runtime5.7.0"
#endif
/**
* Get the number of triggered frames. This function may not be reliably fast for some applications.
* @param pco handle
* @param count output the number of triggered frames
* @return 0 on success, otherwise less than 0
*/
unsigned int pco_get_trigger_count(pco_handle *pco, uint32_t *count);
#ifdef __cplusplus
}
#endif /*__cplusplus*/
#endif /*_PCOCLHS_H_*/