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