Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In order for your module to be used within WinGate it needs to export a set of mandatory functions.

 

For GUI

...

modules

Code Block
languagecpp
extern "C" __declspec(dllexport) int InitialiseGUI(HostAPI* pHost, HostModuleHandle hModule)

See InitialiseGUI

For Engine

...

modules

Code Block
languagecpp
extern "C" __declspec(dllexport) int Initialise(HostAPI* pHost, HostModuleHandle hModule, LPCWSTR szRegistryPath)

...