mirror of
https://github.com/CTCaer/hekate.git
synced 2025-01-10 19:52:28 -03:00
11 lines
171 B
C
11 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!");
|
||
|
}
|