home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
source
/
luschsrc.sit
/
help.c
< prev
next >
Wrap
Text File
|
1990-05-23
|
616b
|
31 lines
/********************************************************************************
* 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);
}
}