mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-12-04 11:35:39 +00:00
22 lines
324 B
C
22 lines
324 B
C
#ifndef _CUBEB_JNI_H_
|
|
#define _CUBEB_JNI_H_
|
|
|
|
typedef struct cubeb_jni cubeb_jni;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
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);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif // _CUBEB_JNI_H_
|