mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
11 lines
254 B
C
11 lines
254 B
C
#ifndef _CUBEB_JNI_H_
|
|
#define _CUBEB_JNI_H_
|
|
|
|
typedef struct cubeb_jni cubeb_jni;
|
|
|
|
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);
|
|
|
|
#endif // _CUBEB_JNI_H_
|