home *** CD-ROM | disk | FTP | other *** search
- /*
- * ImageFX Development Header File
- * Copyright © 1991-1995 Nova Design, Inc.
- * Written by Thomas Krehbiel
- *
- * Main header file for Hook programs.
- *
- */
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
-
- #include <scan/modall.h>
- #include <exec/execbase.h>
-
-
- void hook_main (int argc, char **argv);
- void hook_exit (int rc);
- void hook_fail (char *message);
-
-
- extern struct ScanBase *ScanBase;
- extern struct IntuitionBase *IntuitionBase;
- extern struct GfxBase *GfxBase;
-
- extern struct ExecBase *SysBase;
-
- extern char **HookTextArray;
-
- #define TXT(i) (HookGetStr(i))
-
- extern char *HookGetStr(int idx);
-
- extern BOOL HookCloseIFX;
-