Page tree

Versions Compared

Key

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

...

Code Block
languagecpp
static ComponentEntry myComponent;


extern "C" __declspec(dllexport) int Initialise(HostAPI* pHost, HostModuleHandle hModule, LPCWSTR szRegistryPath)
{
// Setup eliminated for brevity
	myComponent.hComponentPrivate = &myComponent;

	return wgapi_RegisterComponent(hModule, &myComponent);
}


...