1 /*
2  * $Id: Ximprot.h,v 1.2 2001/06/14 18:16:14 ura Exp $
3  */
4 /*
5  * FreeWnn is a network-extensible Kana-to-Kanji conversion system.
6  * This file is part of FreeWnn.
7  *
8  * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
9  *
10  * Author: OMRON SOFTWARE Co., Ltd. <freewnn@rd.kyoto.omronsoft.co.jp>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2, or (at your option)
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with GNU Emacs; see the file COPYING.  If not, write to the
24  * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25  *
26  * Commentary:
27  *
28  * Change log:
29  *
30  * Last modified date: 8,Feb.1999
31  *
32  * Code:
33  *
34  */
35 
36 #ifndef _XIMPROT_H
37 #define _XIMPROT_H
38 
39 #include <X11/Xproto.h>
40 #include "XimProto.h"
41 
42 typedef struct
43 {
44   CARD8 major_opcode;
45   CARD8 minor_opcode;
46   CARD16 length;
47   CARD8 *data;
48 }
49 XimRequestPacket;
50 
51 #endif /* _XIMPROT_H */
52