11namespace Arp::System::Module
14extern "C" ARP_EXPORT
void ArpSystemModuleMain(
const char* applicationName,
const char* acfSettingsPath =
nullptr);
15extern "C" ARP_EXPORT
void ArpSystemModuleSetup(
const char* applicationName,
const char* acfSettingsPath =
nullptr);
16extern "C" ARP_EXPORT
void ArpSystemModuleDispose(
void);
19using ArpSystemModuleMainFunction = void(*)(
const char*,
const char*);
20using ArpSystemModuleSetupFunction = void(*)(
const char*,
const char*);
21using ArpSystemModuleDisposeFunction = void(*)(void);
23const char* ArpSystemModuleMainEntryName =
"ArpSystemModuleMain";
24const char* ArpSystemModuleSetupEntryName =
"ArpSystemModuleSetup";
25const char* ArpSystemModuleDisposeEntryName =
"ArpSystemModuleDispose";
Root namespace for the PLCnext API