loadinfo.h
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:2k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
  2.    This file is part of the GNU C Library.
  3.    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software Foundation,
  14.    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  15. #ifndef PARAMS
  16. # if __STDC__
  17. #  define PARAMS(args) args
  18. # else
  19. #  define PARAMS(args) ()
  20. # endif
  21. #endif
  22. /* Encoding of locale name parts.  */
  23. #define CEN_REVISION 1
  24. #define CEN_SPONSOR 2
  25. #define CEN_SPECIAL 4
  26. #define XPG_NORM_CODESET 8
  27. #define XPG_CODESET 16
  28. #define TERRITORY 32
  29. #define CEN_AUDIENCE 64
  30. #define XPG_MODIFIER 128
  31. #define CEN_SPECIFIC (CEN_REVISION|CEN_SPONSOR|CEN_SPECIAL|CEN_AUDIENCE)
  32. #define XPG_SPECIFIC (XPG_CODESET|XPG_NORM_CODESET|XPG_MODIFIER)
  33. struct loaded_l10nfile
  34. {
  35.   const char *filename;
  36.   int decided;
  37.   const void *data;
  38.   struct loaded_l10nfile *next;
  39.   struct loaded_l10nfile *successor[1];
  40. };
  41. extern const char *_nl_normalize_codeset PARAMS ((const unsigned char *codeset,
  42.   size_t name_len));
  43. extern struct loaded_l10nfile *
  44. _nl_make_l10nflist PARAMS ((struct loaded_l10nfile **l10nfile_list,
  45.     const char *dirlist, size_t dirlist_len, int mask,
  46.     const char *language, const char *territory,
  47.     const char *codeset,
  48.     const char *normalized_codeset,
  49.     const char *modifier, const char *special,
  50.     const char *sponsor, const char *revision,
  51.     const char *filename, int do_allocate));
  52. extern const char *_nl_expand_alias PARAMS ((const char *name));
  53. extern int _nl_explode_name PARAMS ((char *name, const char **language,
  54.      const char **modifier,
  55.      const char **territory,
  56.      const char **codeset,
  57.      const char **normalized_codeset,
  58.      const char **special,
  59.      const char **sponsor,
  60.      const char **revision));