mirror of
https://github.com/CTCaer/hekate
synced 2024-11-05 03:16:35 +00:00
10 lines
171 B
C
10 lines
171 B
C
/* Sample Hekate Module
|
|
2018 - M4xw
|
|
*/
|
|
|
|
#include "../../common/common_module.h"
|
|
|
|
void _pluginInit(cbMainModule_t cb, pmoduleConfiguration_t mc)
|
|
{
|
|
cb("Hello World!");
|
|
}
|