blob: 58ee93a38696fcccd438a83146483484f666de87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef PIPEWIRE_BINDING_H
#define PIPEWIRE_BINDING_H
#include <stdint.h>
#include <stddef.h>
extern void goHandleData(int16_t *, size_t);
void *pw_go_capture_init(void);
void pw_go_capture_run(void *);
void pw_go_capture_deinit(void *);
#endif // !PIPEWIRE_BINDING_H
|