home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1998 February / PCOnline_02_1998.iso / filesbbs / os2 / pgp263.arj / PGP263I.SRC / PGP263II.ZIP / src / language.h < prev    next >
C/C++ Source or Header  |  1994-07-15  |  649b  |  22 lines

  1. /*
  2.  *    language.h
  3.  *    Include file for PGP foreign language translation facility
  4.  */
  5.  
  6. /*
  7.  * Strings with LANG() around them are found by automatic tools and put
  8.  * into the special text file to be translated into foreign languages.
  9.  * LANG () (note the space between 'G' and '(') should be used if there
  10.  * is no string to be extracted (eg. prototype).
  11.  */
  12.  
  13. extern char    *LANG (char *s);
  14.  
  15. /*
  16.  * Use the dummy macro _LANG for strings that should be extracted, but
  17.  * shouldn't be processed by the LANG function (eg. array initializers).
  18.  */
  19. #define _LANG(x)    x
  20.  
  21. extern char language[]; /* language selector prefix for string file */
  22.