16 lines
235 B
C++
16 lines
235 B
C++
|
|
//
|
||
|
|
// Created by david on 02.03.2026.
|
||
|
|
//
|
||
|
|
|
||
|
|
#include <jni.h>
|
||
|
|
#include "mpg123.h"
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
|
||
|
|
JNIEXPORT jint JNICALL
|
||
|
|
Java_at_lockstep_pb_PlaybackEngine_native_1mpg123_1init
|
||
|
|
(JNIEnv *env, jclass) {
|
||
|
|
return mpg123_init();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|