Duckstation/dep/cubeb/src/cubeb-jni.h

22 lines
324 B
C
Raw Normal View History

2020-01-10 04:59:53 +00:00
#ifndef _CUBEB_JNI_H_
#define _CUBEB_JNI_H_
typedef struct cubeb_jni cubeb_jni;
#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
#ifdef __cplusplus
};
#endif
2020-01-10 04:59:53 +00:00
#endif // _CUBEB_JNI_H_