2020-01-10 04:59:53 +00:00
|
|
|
#ifndef _CUBEB_JNI_H_
|
|
|
|
#define _CUBEB_JNI_H_
|
|
|
|
|
|
|
|
typedef struct cubeb_jni cubeb_jni;
|
|
|
|
|
2023-11-24 11:14:39 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-08-05 07:28:17 +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);
|
2020-01-10 04:59:53 +00:00
|
|
|
|
2023-11-24 11:14:39 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2020-01-10 04:59:53 +00:00
|
|
|
#endif // _CUBEB_JNI_H_
|