SysRegisterObjectClass
Function:
Syntax:
result = SysRegisterObjectClass(classname, modulename)
classname
The name of the new object class.
modulename
The name
of the module containing the object definition.
result
The return code from WinRegisterObjectClass.
This returns 1 (TRUE) if the class was registered and 0 (FALSE) if the
new class was not registered.
Purpose:
Register
a new object class definition to the system.
Examples:
/* Code */
if SysRegisterObjectClass("NewObject","NEWDLL") then
say 'Install successfully completed for NewObject'
[Back: SysQueryClassList]
[Next: SysRmDir]