home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / misc / lingua12 / ui_text.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-21  |  605 b   |  17 lines

  1. /* ui_text.h */
  2.  
  3. int ui_loadtext(char *fname,char *vers);
  4. void ui_unloadtext(void);
  5. char *ui_filetext(unsigned pos);
  6. char **ui_filearray(unsigned pos);
  7. extern char **ui_text;
  8.  
  9. #define ZEROTH                         ui_text[0]
  10. #define FIRST                          ui_text[1]
  11. #define SECOND                         ui_text[2]
  12. #define THIRD                          (ui_text+3)
  13. #define EIGHTH                         ui_text[8]
  14. #define NINTH                          ui_filetext(0)
  15. #define TENTH                          ui_filetext(1)
  16. #define ELEVEN                         ui_filetext(2)
  17.