home *** CD-ROM | disk | FTP | other *** search
- /*** install MNIcon class ***/
-
- if RxFuncQuery("SysLoadFuncs") then
- do
- call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs';
- call SysLoadFuncs;
- end
-
- Class = "MNIcon";
- DLL = "MNIcon";
-
- result = SysRegisterObjectClass(Class, DLL);
-
- if result then
- do
- say Class "is registered successfully";
- end
- else
- do
- say Class "is not registered (return code:" result||")";
- end