comparison include/Sj3.h @ 0:92745d501b9a

initial import from kinput2-v3.1
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Mon, 08 Mar 2010 04:44:30 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:92745d501b9a
1 /* $Id: Sj3.h,v 2.1 1992/06/09 03:55:37 nao Exp $ */
2 /*
3 * Copyright (c) 1990 Software Research Associates, Inc.
4 *
5 * Permission to use, copy, modify, and distribute this software and its
6 * documentation for any purpose and without fee is hereby granted, provided
7 * that the above copyright notice appear in all copies and that both that
8 * copyright notice and this permission notice appear in supporting
9 * documentation, and that the name of Software Research Associates not be
10 * used in advertising or publicity pertaining to distribution of the
11 * software without specific, written prior permission. Software Research
12 * Associates makes no representations about the suitability of this software
13 * for any purpose. It is provided "as is" without express or implied
14 * warranty.
15 *
16 * Author: Makoto Ishisone, Software Research Associates, Inc., Japan
17 */
18
19 /*
20 * Copyright 1991 Sony Corporation
21 *
22 * Permission to use, copy, modify, distribute, and sell this software and its
23 * documentation for any purpose is hereby granted without fee, provided that
24 * the above copyright notice appear in all copies and that both that
25 * copyright notice and this permission notice appear in supporting
26 * documentation, and that the name of Sony not be used in advertising or
27 * publicity pertaining to distribution of the software without specific,
28 * written prior permission. Sony makes no representations about the
29 * suitability of this software for any purpose. It is provided "as is"
30 * without express or implied warranty.
31 *
32 * SONY DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
33 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL SONY
34 * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
35 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
36 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
37 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
38 */
39 /*
40 * Author: Naoshi Suzuki, SONY Corporation. (nao@sm.sony.co.jp)
41 */
42
43 #ifndef _Sj3_h
44 #define _Sj3_h
45
46 #include "InputConv.h"
47
48 /*
49 Sj3 new resources:
50
51 name class type default access
52 ----------------------------------------------------------------------------
53 sj3serv Sj3serv String *1 CG
54 sj3serv2 Sj3serv2 String *2 CG
55 sj3user Sj3user String *3 CG
56 rkfile Rkfile String *4 CG
57 sbfile Sbfile String *5 CG
58 rcfile Rcfile String *6 CG
59 hkfile Hkfile String *7 CG
60 zhfile Zhfile String *8 CG
61
62 note: *1) if not specified, use value of an environment variable "SJ3SERV"
63 if not specified an environment "SJ3SERV", read from sjrc file
64 *2) if not specified, use value of an environment variable "SJ3SERV2"
65 if not specified an environment "SJ3SERV2", read from sjrc file
66 *3) if not specified, use value of login name
67 *4) if not specified, use value of an environment variable "SJRK"
68 *5) if not specified, use value of an environment variable "SJSB"
69 *6) if not specified, use value of an environment variable "SJRC"
70 *7) if not specified, use value of an environment variable "SJHK"
71 *8) if not specified, use value of an environment variable "SJZH"
72 */
73
74 #define XtNsj3serv "sj3serv"
75 #define XtCSj3serv "Sj3serv"
76 #define XtNsj3serv2 "sj3serv2"
77 #define XtCSj3serv2 "Sj3serv2"
78 #define XtNsj3user "sj3user"
79 #define XtCSj3user "Sj3user"
80 #define XtNrcfile "rcfile"
81 #define XtCRcfile "Rcfile"
82 #define XtNsbfile "sbfile"
83 #define XtCSbfile "Sbfile"
84 #define XtNrkfile "rkfile"
85 #define XtCRkfile "Rkfile"
86 #define XtNhkfile "hkfile"
87 #define XtCHkfile "Hkfile"
88 #define XtNzhfile "zhfile"
89 #define XtCZhfile "Zhfile"
90
91 typedef struct _Sj3ClassRec *Sj3ObjectClass;
92 typedef struct _Sj3Rec *Sj3Object;
93
94 extern WidgetClass sj3ObjectClass;
95
96 #endif /* _Sj3_h */
97