2022-09-29 12:49:50 +00:00
|
|
|
#ifndef _CUBEB_JNI_H_
|
|
|
|
#define _CUBEB_JNI_H_
|
|
|
|
|
|
|
|
typedef struct cubeb_jni cubeb_jni;
|
|
|
|
|
2023-11-24 12:21:44 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-09-29 12:49:50 +00:00
|
|
|
cubeb_jni *
|
|
|
|
cubeb_jni_init();
|
|
|
|
int
|
|
|
|
cubeb_get_output_latency_from_jni(cubeb_jni * cubeb_jni_ptr);
|
|
|
|
void
|
|
|
|
cubeb_jni_destroy(cubeb_jni * cubeb_jni_ptr);
|
|
|
|
|
2023-11-24 12:21:44 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2022-09-29 12:49:50 +00:00
|
|
|
#endif // _CUBEB_JNI_H_
|