24 lines
554 B
C
24 lines
554 B
C
#ifndef livekit_ffi
|
|
#define livekit_ffi
|
|
|
|
/* Warning, this file is autogenerated. Don't modify this manually. */
|
|
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef size_t FfiHandleId;
|
|
|
|
#define INVALID_HANDLE 0
|
|
|
|
FfiHandleId livekit_ffi_request(const uint8_t *data,
|
|
size_t len,
|
|
const uint8_t **res_ptr,
|
|
size_t *res_len);
|
|
|
|
bool livekit_ffi_drop_handle(FfiHandleId handle_id);
|
|
|
|
#endif /* livekit_ffi */
|