android_jni.h 444 B

12345678910111213141516171819202122
  1. #ifndef SDLPAL_JNI_H
  2. #define SDLPAL_JNI_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. extern char externalStoragePath[1024];
  7. extern char midiInterFile[1024];
  8. void* JNI_mediaplayer_load(const char *);
  9. void JNI_mediaplayer_free(void *);
  10. void JNI_mediaplayer_play(void *, int);
  11. void JNI_mediaplayer_stop(void *);
  12. int JNI_mediaplayer_isplaying(void *);
  13. void JNI_mediaplayer_setvolume(void *, int);
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif // SDLPAL_JNI_H