Files
dhfs/launcher/libjvm_wrapper/include_public/LibjvmWrapper.hpp

26 lines
352 B
C++

//
// Created by Stepan Usatiuk on 24.06.2025.
//
#ifndef LIBJVMWRAPPER_HPP
#define LIBJVMWRAPPER_HPP
#include <jni.h>
class LibjvmWrapper {
public:
static LibjvmWrapper& instance();
decltype(JNI_CreateJavaVM)* WJNI_CreateJavaVM;
private:
LibjvmWrapper();
~LibjvmWrapper();
void* _lib_handle;
};
#endif //LIBJVMWRAPPER_HPP