home *** CD-ROM | disk | FTP | other *** search
- enum {
-
- /* Comments begin with a semi-colon */
-
- TXT_msg1,
- TXT_msg2,
- TXT_msg3,
-
- /* These reserved spots make it easier to insert new strings without */
- /* massive recompiling. It's not so important with just one source */
- /* module - but when you have many source modules sharing the same */
- /* header file (like ImageFX) it becomes necessary. */
- Z_reserved0,
- Z_reserved1,
- Z_reserved2,
- Z_reserved3,
-
- TXT_gad1,
- TXT_title,
- Z_reserved4,
- Z_reserved5,
-
- TXT_COUNT
- };
-
- char *HookText = "Hook_Sample";
- int HookTextCount = TXT_COUNT;
-
- char *HookStrings[] = {
-
- /* Comments begin with a semi-colon */
-
- "This is message #1.",
- "This, however, is message two.",
- "And this is message number 3.",
-
- /* These reserved spots make it easier to insert new strings without */
- /* massive recompiling. It's not so important with just one source */
- /* module - but when you have many source modules sharing the same */
- /* header file (like ImageFX) it becomes necessary. */
- 0,
- 0,
- 0,
- 0,
-
- "Vaporize Amount:",
- "Vaporize Images",
- 0,
- 0,
- };
-