libcamera-sys 0.3.0

Low-level unsafe bindings to libcamera
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __LIBCAMERA_C_SIGNAL__
#define __LIBCAMERA_C_SIGNAL__

#include <stdint.h>

#ifdef __cplusplus
struct libcamera_callback_handle {};

extern "C" {
#endif

typedef struct libcamera_callback_handle libcamera_callback_handle_t;

#ifdef __cplusplus
}
#endif

#endif