dtcm: Resolve CID 87408
[oweals/cde.git] / cde / programs / dtcm / dtcm / cm_i18n.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*******************************************************************************
24 **
25 **  cm_i18n.h
26 **
27 **  static char sccsid[] = "@(#)cm_i18n.h 1.7 94/12/22 Copyr 1991 Sun Microsystems, Inc.";
28 **
29 **  $XConsortium: cm_i18n.h /main/4 1996/11/07 17:00:36 drk $
30 **
31 **  RESTRICTED CONFIDENTIAL INFORMATION:
32 **
33 **  The information in this document is subject to special
34 **  restrictions in a confidential disclosure agreement between
35 **  HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
36 **  document outside HP, IBM, Sun, USL, SCO, or Univel without
37 **  Sun's specific written approval.  This document and all copies
38 **  and derivative works thereof must be returned or destroyed at
39 **  Sun's request.
40 **
41 **  Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
42 **
43 *******************************************************************************/
44
45 /*                                                                      *
46  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
47  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
48  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
49  * (c) Copyright 1993, 1994 Novell, Inc.                                *
50  */
51
52 #ifndef _FILENAME
53 #define _FILENAME
54 #endif
55
56 /* CM font file description:
57  *
58  * Each line cannot exceed MAX_LINE_LEN. 
59  * File format is as follows: 
60  * <Locale name> <fontset1_fontname1> <fontset2_fontname1>
61  *               <fontset1_fontname2> <fontset2_fontname2>
62  * Line starts at left most margin.
63  * Categories separated by space(s).
64  * Comment lines start with an '%'
65  */
66
67
68 #define MAX_LINE_LEN    128
69 #define MAX_FONT_LEN    40
70 #define COMMENT_SYMBOL  "%"
71 #define CHAR_SIZE       sizeof(char)
72 #define isEUC(c)    ((c) & 0x80 ? TRUE : FALSE)
73
74 /* cm_get_fonts()'s return values */
75 #define OPEN_FAIL         -1
76 #define NO_LOCALE_ENTRY   -2 
77 #define EXTRACT_FAIL      -3
78 #define OKAY               1
79 #define NO_I18N_HEADER     2
80
81 extern char *fontset1[];
82 extern char *fontset2[];
83 extern int use_default_fonts;
84 extern int use_octal;
85
86 extern int cm_get_fonts(/* char * */); 
87 extern void ps_i18n_header(/* FILE *, Frame */);
88 extern char *euc_to_octal(/* char * */);
89 extern char *cm_get_i18n_date(/* Frame, char * */);
90 extern char *cm_printf();
91
92 int is_comment();
93 int match_locale();
94
95 extern int      cm_get_fonts            P((char *));
96 extern int      is_comment              P((char[MAX_LINE_LEN]));
97 extern int      match_locale            P((char *, char[MAX_LINE_LEN]));
98 extern void     ps_i18n_header          P((FILE *, Widget));
99 extern char*    euc_to_octal            P((char *));
100 extern char*    cm_get_i18n_date        P((Widget, char *));
101 extern char*    cm_printf               P((double, int));