home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / imagefx_sdk / str / sample_strings.h < prev    next >
C/C++ Source or Header  |  1980-01-10  |  1KB  |  51 lines

  1. enum {
  2.  
  3.     /* Comments begin with a semi-colon */
  4.  
  5.     TXT_msg1,
  6.     TXT_msg2,
  7.     TXT_msg3,
  8.  
  9.     /* These reserved spots make it easier to insert new strings without */
  10.     /* massive recompiling.  It's not so important with just one source */
  11.     /* module - but when you have many source modules sharing the same */
  12.     /* header file (like ImageFX) it becomes necessary. */
  13.     Z_reserved0,
  14.     Z_reserved1,
  15.     Z_reserved2,
  16.     Z_reserved3,
  17.  
  18.     TXT_gad1,
  19.     TXT_title,
  20.     Z_reserved4,
  21.     Z_reserved5,
  22.  
  23.     TXT_COUNT
  24. };
  25.  
  26. char *HookText = "Hook_Sample";
  27. int HookTextCount = TXT_COUNT;
  28.  
  29. char *HookStrings[] = {
  30.  
  31.     /* Comments begin with a semi-colon */
  32.  
  33.     "This is message #1.",
  34.     "This, however, is message two.",
  35.     "And this is message number 3.",
  36.  
  37.     /* These reserved spots make it easier to insert new strings without */
  38.     /* massive recompiling.  It's not so important with just one source */
  39.     /* module - but when you have many source modules sharing the same */
  40.     /* header file (like ImageFX) it becomes necessary. */
  41.      0,
  42.      0,
  43.      0,
  44.      0,
  45.  
  46.     "Vaporize Amount:",
  47.     "Vaporize Images",
  48.      0,
  49.      0,
  50. };
  51.