home *** CD-ROM | disk | FTP | other *** search
- /*
- * Sample localized hook.
- *
- */
-
- #include <scan/hooks.h>
- #include <scan/previnfo.h>
-
-
- char *HookName = "Sample";
- char *HookVersion = "\0$VER: Sample 1.0.0 (4.6.94)";
-
- #include "sample_strings.h"
-
- void hook_main (int argc, char **argv)
- {
- InfoRequest(HookGetStr(TXT_msg1));
- InfoRequest(HookGetStr(TXT_msg2));
- InfoRequest(HookGetStr(TXT_msg3));
-
- /*
- * Warning: I don't know how ImageFX will react to this
- * minimal tag list.
- */
-
- DoPreviewWindow(
- DPW_Text, HookTextArray,
- DPW_TitleID, TXT_title,
- TAG_END
- );
- }
-