home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / imagefx_sdk / sas / examples / hooks / gedsample_strings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-11  |  253 b   |  25 lines

  1. enum {
  2.  
  3.     Z_reserved0,
  4.     G_Title,
  5.     G_Okay,
  6.     G_Cancel,
  7.     G_Integer,
  8.     G_String,
  9.  
  10.     TXT_COUNT
  11. };
  12.  
  13. char *HookText = "Hook_GedSample";
  14. int HookTextCount = TXT_COUNT;
  15.  
  16. char *HookStrings[] = {
  17.  
  18.      0,
  19.     "GED Sample Window",
  20.     "_Okay",
  21.     "_Cancel",
  22.     "Int:",
  23.     "Str:",
  24. };
  25.