11ab64890Smrg/****************************************************************** 21ab64890Smrg 31ab64890Smrg Copyright 1992, 1993 by FUJITSU LIMITED 41ab64890Smrg Copyright 1993 by Digital Equipment Corporation 51ab64890Smrg 61ab64890SmrgPermission to use, copy, modify, distribute, and sell this software 71ab64890Smrgand its documentation for any purpose is hereby granted without fee, 81ab64890Smrgprovided that the above copyright notice appear in all copies and that 91ab64890Smrgboth that copyright notice and this permission notice appear in 101ab64890Smrgsupporting documentation, and that the name of FUJITSU LIMITED and 111ab64890SmrgDigital Equipment Corporation not be used in advertising or publicity 121ab64890Smrgpertaining to distribution of the software without specific, written 131ab64890Smrgprior permission. FUJITSU LIMITED and Digital Equipment Corporation 141ab64890Smrgmakes no representations about the suitability of this software for 151ab64890Smrgany purpose. It is provided "as is" without express or implied 161ab64890Smrgwarranty. 171ab64890Smrg 1861b2299dSmrgFUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL 1961b2299dSmrgWARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED 2061b2299dSmrgWARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL 2161b2299dSmrgFUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR 2261b2299dSmrgANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 2361b2299dSmrgWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER 2461b2299dSmrgIN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 2561b2299dSmrgARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 261ab64890SmrgTHIS SOFTWARE. 271ab64890Smrg 2861b2299dSmrg Author: Takashi Fujiwara FUJITSU LIMITED 291ab64890Smrg fujiwara@a80.tech.yk.fujitsu.co.jp 301ab64890Smrg Modifier: Franky Ling Digital Equipment Corporation 311ab64890Smrg frankyling@hgrd01.enet.dec.com 321ab64890Smrg 331ab64890Smrg******************************************************************/ 341ab64890Smrg 351ab64890Smrg#ifdef HAVE_CONFIG_H 361ab64890Smrg#include <config.h> 371ab64890Smrg#endif 381ab64890Smrg#include "Xlibint.h" 391ab64890Smrg#include "Xlcint.h" 401ab64890Smrg#include "Ximint.h" 411ab64890Smrg#include "XimImSw.h" 421ab64890Smrg 43eb411b4bSmrgstatic Bool 441ab64890Smrg_XimCheckIfDefault( 451ab64890Smrg Xim im) 461ab64890Smrg{ 471ab64890Smrg return(True); 481ab64890Smrg} 491ab64890Smrg 501ab64890SmrgXimImsportSW _XimImSportRec[] = { 511ab64890Smrg { _XimCheckIfLocalProcessing, _XimLocalOpenIM, _XimLocalIMFree }, 521ab64890Smrg { _XimCheckIfThaiProcessing, _XimThaiOpenIM, _XimThaiIMFree }, 531ab64890Smrg { _XimCheckIfDefault, _XimProtoOpenIM, _XimProtoIMFree }, 541ab64890Smrg { NULL, NULL, NULL }, 551ab64890Smrg}; 56