home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / devcon / milan_1991 / devcon91.2 / locale / development / example / samplestr.h < prev    next >
C/C++ Source or Header  |  1992-09-01  |  821b  |  51 lines

  1. #ifndef TEXTTABLE_H
  2. #define TEXTTABLE_H
  3.  
  4.  
  5. /****************************************************************************/
  6.  
  7.  
  8. /* This file was created automatically by CatComp.
  9.  * Do NOT edit by hand!
  10.  */
  11.  
  12.  
  13. #include <exec/types.h>
  14.  
  15.  
  16. /****************************************************************************/
  17.  
  18.  
  19. #define MSG_HELLO 0
  20. #define MSG_HELLO_STR "Hello World!\n"
  21.  
  22. #define MSG_BYE 1
  23. #define MSG_BYE_STR "Goodbye World!\n"
  24.  
  25.  
  26. /****************************************************************************/
  27.  
  28.  
  29. #ifdef STRINGARRAY
  30.  
  31. struct AppString
  32. {
  33.     LONG   as_ID;
  34.     STRPTR as_Str;
  35. };
  36.  
  37. struct AppString AppStrings[] =
  38. {
  39.     {MSG_HELLO,MSG_HELLO_STR},
  40.     {MSG_BYE,MSG_BYE_STR},
  41. };
  42.  
  43.  
  44. #endif /* STRINGARRAY */
  45.  
  46.  
  47. /****************************************************************************/
  48.  
  49.  
  50. #endif /* TEXTTABLE_H */
  51.