home *** CD-ROM | disk | FTP | other *** search
- /********************************************************************************
- * help.c
- *
- * Online Help Package
- *
- * Written by Paco Xander Nathan
- * ⌐1990, Motorola Inc. Public domain source code.
- ********************************************************************************/
-
- #include "applic.h"
- #include "help.h"
-
-
- /* Glue routine to access the "Help Compiler" code, text and dialog resources
- */
- void
- HelpAppl ()
- {
- Handle helpHdl;
- ProcPtr helpProc;
-
- if (helpHdl = GetResource('CODE', 2000)) {
- HLock(helpHdl);
- helpProc = (ProcPtr) *helpHdl;
-
- (*helpProc)();
-
- ReleaseResource(helpHdl);
- }
- }
-