mirror of https://github.com/stenzek/duckstation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
254 B
C
11 lines
254 B
C
|
6 years ago
|
#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_
|