Page tree

Versions Compared

Key

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

Registers a new component with the host framework. Typically you will call this from within Initialise or InitialiseGUI.

Syntax

Code Block
languagecpp
int RegisterComponent(
HostModuleHandle module,
ComponentEntry* entry
);

...

Vardef
Nameentry
TypeMod*
Linkedtrue
TypeComponentEntry
StyleParameter

Pointer to the ComponentEntry object that you wish to register.

Returnvalue
Typeint

Non-zero if the component is registered successfully, or zero if registration failed.

 

Remarks

Examples

Requirements

See Also

ComponentEntry

HostModuleHandle

...