Page tree

Versions Compared

Key

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

Signature of the function used to query a component for whether it's OK to initialise its interfaces. You must supply a QueryInitInterfacesFunc in your ComponentEntry.InitInterfaces member when registering your component.

Syntax

Code Block
languagecpp
typedef bool(*QueryInitInterfacesFunc)(ComponentEntry* Entry, bool bLastChance);

 

Parameters

Entry

Type: ComponentEntry *

Pointer to the ComponentEntry that is being asked for it's interface initialisation status.

bLastChance

Type: bool

Indicates whether this is the last chance for the component to respond.   

Return Value

Type: bool

...

Remarks

Examples

Requirements

See Also

 

See Also

ComponentEntry.QueryInitInterfaces