IModule.FirstErrorNumber (PROP) ¶ PROPERTY FirstErrorNumber : UINT Returns the number of the first error that occured. 0 means: no error.
IModule.GetErrorMessage (METH) ¶ METHOD GetErrorMessage : STRING(255) This method returns a textual error message in the specified language according to the error number, that is given in InOut: Scope Name Type Return GetErrorMessage STRING(255) Input uiErrorNumber UINT sLanguage STRING
IModule.GetFirstErrorMessage (METH) ¶ METHOD GetFirstErrorMessage : STRING(255) Returns the textual error message in the speified language of the first error that occured in case of no error, the returned string stays empty. InOut: Scope Name Type Return GetFirstErrorMessage STRING(255) Input sLanguage STRING
IModule.GetLastErrorMessage (METH) ¶ METHOD GetLastErrorMessage : STRING(255) Returns the textual error message in the speified language of the last error that occured in case of no error, the returned string stays empty. InOut: Scope Name Type Return GetLastErrorMessage STRING(255) Input sLanguage STRING
IModule.LastErrorInstance (PROP) ¶ PROPERTY LastErrorInstance : IModule Returns the interface of the module instance that has caused the last error. 0 means: the error occured in this module instance or no error has occured.
IModule.LastErrorNumber (PROP) ¶ PROPERTY LastErrorNumber : UINT Returns the number of the last error that occured. 0 means: no error.
IModule.CallPrioMediumEnd (METH) ¶ METHOD CallPrioMediumEnd : BOOL Called at the end of the medium priority task if one is defined. Note : the return value is not used. InOut: Scope Name Type Return CallPrioMediumEnd BOOL
IModule.CallPrioMediumStart (METH) ¶ METHOD CallPrioMediumStart : BOOL Called at the start of the medium priority task if one is defined. Note : the return value is not used. InOut: Scope Name Type Return CallPrioMediumStart BOOL
IModuleTree (ITF) ¶ INTERFACE IModuleTree Interface for implementations of the runtime tree structure of the module instance tree. Methods: GetFirstChild GetFirstToplevelInstance GetParent NextSibling PrevSibling Structure: GetFirstChild (Method) GetFirstToplevelInstance (Method) GetParent (Method) NextSibling (Method) PrevSibling (Method)
IModuleTree.GetFirstChild (METH) ¶ METHOD GetFirstChild : IModule Returns the first child of a given module instance. Returns 0 if (and only if) md has no children. InOut: Scope Name Type Comment Return GetFirstChild IModule Input md IModule The module instance that is queried (must not be 0)