/usr/include/libapogee/libapogee.h is in libapogee-dev 2.2-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 32 33 34 35 36 37 38 39 40 41 42 | /* glue so C can make use of key operations available in CApnCamera.
*/
#ifndef LIBAPOGEE_H
#define LIBAPOGEE_H
#define APOGEE_USB_ONLY 0
#define APOGEE_ETH_ONLY 1
#ifdef __cplusplus
extern "C" {
#endif
int ApnGlueOpen(unsigned int id);
void ApnGlueGetMaxValues (double *exptime, int *roiw, int *roih, int *osw,
int *osh, int *binw, int *binh, int *shutter, double *mintemp);
int ApnGlueSetExpGeom (int roiw, int roih, int osw, int osh, int binw,
int binh, int roix, int roiy, int *impixw, int *impixh, char whynot[]);
void ApnGlueExpAbort(void);
int ApnGlueStartExp (double *exptime, int shutter);
int ApnGlueExpDone(void);
int ApnGlueReadPixels (unsigned short *buf, int nbuf, char whynot[]);
void ApnGlueSetTemp (double C);
int ApnGlueGetTemp (double *Cp);
void ApnGlueSetFan (int speed);
void ApnGlueGetName(char **sensor, char **camera);
#ifdef __cplusplus
}
#endif
#endif
|