home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / evbl0627.zip / everblue_20010627.zip / x11 / Xim_ImSw.c < prev    next >
C/C++ Source or Header  |  1999-11-02  |  2KB  |  54 lines

  1. /* $XConsortium: imImSw.c,v 1.2 94/01/20 18:04:32 rws Exp $ */
  2. /******************************************************************
  3.  
  4.           Copyright 1992, 1993 by FUJITSU LIMITED
  5.           Copyright 1993 by Digital Equipment Corporation
  6.  
  7. Permission to use, copy, modify, distribute, and sell this software
  8. and its documentation for any purpose is hereby granted without fee,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the name of FUJITSU LIMITED and
  12. Digital Equipment Corporation not be used in advertising or publicity
  13. pertaining to distribution of the software without specific, written
  14. prior permission.  FUJITSU LIMITED and Digital Equipment Corporation
  15. makes no representations about the suitability of this software for
  16. any purpose.  It is provided "as is" without express or implied
  17. warranty.
  18.  
  19. FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL 
  20. WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED 
  21. WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL 
  22. FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR 
  23. ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 
  24. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER 
  25. IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 
  26. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 
  27. THIS SOFTWARE.
  28.  
  29.   Author:    Takashi Fujiwara     FUJITSU LIMITED 
  30.                                      fujiwara@a80.tech.yk.fujitsu.co.jp
  31.   Modifier:  Franky Ling          Digital Equipment Corporation
  32.                               frankyling@hgrd01.enet.dec.com
  33.  
  34. ******************************************************************/
  35.  
  36. #include "Xlib_private.h"
  37. #include "Xlcint.h"
  38. #include "Ximint.h"
  39. #include "XimImSw.h"
  40.  
  41. Private Bool
  42. _XimCheckIfDefault(im)
  43.     Xim        im;
  44. {
  45.     return(True);
  46. }
  47.  
  48. XimImsportSW _XimImSportRec[] = {
  49.     _XimCheckIfLocalProcessing, _XimLocalOpenIM, _XimLocalIMFree,
  50.     _XimCheckIfThaiProcessing,    _XimThaiOpenIM,     _XimThaiIMFree,
  51.     _XimCheckIfDefault,         _XimProtoOpenIM, _XimProtoIMFree,
  52.     NULL,                       NULL,         NULL,
  53. };
  54.