Implement elfloader/module support

This commit is contained in:
M4xw
2018-08-07 16:53:58 +02:00
committed by root
parent 71c4e2c155
commit 8b0915cb01
20 changed files with 1542 additions and 46 deletions

View File

@@ -0,0 +1,10 @@
/* Sample Hekate Module
2018 - M4xw
*/
#include "../../common/common_module.h"
void _pluginInit(cbMainModule_t cb, pmoduleConfiguration_t mc)
{
cb("Hello World!");
}