home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 115 / af115sub.adf / yahzee.lzx / yahzee / localize.h < prev    next >
C/C++ Source or Header  |  1978-10-13  |  493b  |  37 lines

  1. #ifndef LOCALIZE_H
  2. #define LOCALIZE_H
  3.  
  4. /*
  5.  * localize.h
  6.  * ==========
  7.  * Functions for localization.
  8.  *
  9.  * Copyright (C) Håkan L. Younes (lorens@hem.passagen.se)
  10.  */
  11.  
  12. #include <exec/types.h>
  13.  
  14. #define CATCOMP_NUMBERS
  15. #include "strings.h"
  16.  
  17.  
  18. void
  19. init_locale (
  20.    char  *catalog);
  21.  
  22. void
  23. finalize_locale (void);
  24.  
  25. char *
  26. localized_string (
  27.    LONG   string_num);
  28.  
  29. struct Menu *
  30. CreateLocMenus (
  31.    struct NewMenu  *new_menus,
  32.    APTR             vis_info,
  33.    ULONG            tag,
  34.    ...);
  35.  
  36. #endif
  37.