This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
nekohook/modules/jni/init.cpp
2020-08-04 13:13:01 -04:00

16 lines
290 B
C++

/*
*
* Init for jni module
*
*/
#include "../../util/logging.hpp" // So we can log
#include "framework/jni.hpp" // So we can determine if we are in a java enviroment
namespace modules::jni {
void Init() { debug_log.log("Begin JNI module init..."); }
} // namespace modules::jni