duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

cubeb-jni.h (324B)


      1 #ifndef _CUBEB_JNI_H_
      2 #define _CUBEB_JNI_H_
      3 
      4 typedef struct cubeb_jni cubeb_jni;
      5 
      6 #ifdef __cplusplus
      7 extern "C" {
      8 #endif
      9 
     10 cubeb_jni *
     11 cubeb_jni_init();
     12 int
     13 cubeb_get_output_latency_from_jni(cubeb_jni * cubeb_jni_ptr);
     14 void
     15 cubeb_jni_destroy(cubeb_jni * cubeb_jni_ptr);
     16 
     17 #ifdef __cplusplus
     18 };
     19 #endif
     20 
     21 #endif // _CUBEB_JNI_H_