Blame util/IMdkit/Xi18nX.h

Packit Service 1d8f1c
/******************************************************************
Packit Service 1d8f1c
 
Packit Service 1d8f1c
         Copyright 1994, 1995 by Sun Microsystems, Inc.
Packit Service 1d8f1c
         Copyright 1993, 1994 by Hewlett-Packard Company
Packit Service 1d8f1c
 
Packit Service 1d8f1c
Permission to use, copy, modify, distribute, and sell this software
Packit Service 1d8f1c
and its documentation for any purpose is hereby granted without fee,
Packit Service 1d8f1c
provided that the above copyright notice appear in all copies and
Packit Service 1d8f1c
that both that copyright notice and this permission notice appear
Packit Service 1d8f1c
in supporting documentation, and that the name of Sun Microsystems, Inc.
Packit Service 1d8f1c
and Hewlett-Packard not be used in advertising or publicity pertaining to
Packit Service 1d8f1c
distribution of the software without specific, written prior permission.
Packit Service 1d8f1c
Sun Microsystems, Inc. and Hewlett-Packard make no representations about
Packit Service 1d8f1c
the suitability of this software for any purpose.  It is provided "as is"
Packit Service 1d8f1c
without express or implied warranty.
Packit Service 1d8f1c
 
Packit Service 1d8f1c
SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL
Packit Service 1d8f1c
WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
Packit Service 1d8f1c
WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
Packit Service 1d8f1c
SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY
Packit Service 1d8f1c
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
Packit Service 1d8f1c
RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
Packit Service 1d8f1c
CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
Packit Service 1d8f1c
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Packit Service 1d8f1c
 
Packit Service 1d8f1c
  Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc.
Packit Service 1d8f1c
Packit Service 1d8f1c
    This version tidied and debugged by Steve Underwood May 1999
Packit Service 1d8f1c
 
Packit Service 1d8f1c
******************************************************************/
Packit Service 1d8f1c
Packit Service 1d8f1c
#ifndef _Xi18nTrX_h
Packit Service 1d8f1c
#define _Xi18nTrX_h
Packit Service 1d8f1c
Packit Service 1d8f1c
#define _XIM_PROTOCOL           "_XIM_PROTOCOL"
Packit Service 1d8f1c
#define _XIM_XCONNECT           "_XIM_XCONNECT"
Packit Service 1d8f1c
Packit Service 1d8f1c
#define XCM_DATA_LIMIT		20
Packit Service 1d8f1c
Packit Service 1d8f1c
typedef struct _XClient
Packit Service 1d8f1c
{
Packit Service 1d8f1c
    Window	client_win;	/* client window */
Packit Service 1d8f1c
    Window	accept_win;	/* accept window */
Packit Service 1d8f1c
} XClient;
Packit Service 1d8f1c
Packit Service 1d8f1c
typedef struct
Packit Service 1d8f1c
{
Packit Service 1d8f1c
    Atom	xim_request;
Packit Service 1d8f1c
    Atom	connect_request;
Packit Service 1d8f1c
} XSpecRec;
Packit Service 1d8f1c
Packit Service 1d8f1c
#endif