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

  1. /* $XConsortium: imLcGIc.c,v 1.3 94/03/26 17:00:30 rws Exp $ */
  2. /******************************************************************
  3.  
  4.                 Copyright 1992,1993, 1994 by FUJITSU LIMITED
  5.  
  6. Permission to use, copy, modify, distribute, and sell this software
  7. and its documentation for any purpose is hereby granted without fee,
  8. provided that the above copyright notice appear in all copies and
  9. that both that copyright notice and this permission notice appear
  10. in supporting documentation, and that the name of FUJITSU LIMITED
  11. not be used in advertising or publicity pertaining to distribution
  12. of the software without specific, written prior permission.
  13. FUJITSU LIMITED makes no representations about the suitability of
  14. this software for any purpose. 
  15. It is provided "as is" without express or implied warranty.
  16.  
  17. FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  18. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  19. EVENT SHALL FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  20. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  21. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  22. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  23. PERFORMANCE OF THIS SOFTWARE.
  24.  
  25.   Author: Takashi Fujiwara     FUJITSU LIMITED 
  26.                                fujiwara@a80.tech.yk.fujitsu.co.jp
  27.  
  28. ******************************************************************/
  29.  
  30. #undef XLIB_ILLEGAL_ACCESS
  31.  
  32. #define NEED_EVENTS
  33. #include <X11/Xlibint.h>
  34. #include "Xlcint.h"
  35. #include "Ximint.h"
  36.  
  37. Public char *
  38. _XimLocalGetICValues(xic, values)
  39.     XIC             xic;
  40.     XIMArg        *values;
  41. {
  42.     Xic             ic = (Xic)xic;
  43.     XimDefICValues     ic_values;
  44.  
  45.     _XimGetCurrentICValues(ic, &ic_values);
  46.     return(_XimGetICValueData(ic, (XPointer)&ic_values,
  47.                 ic->private.local.ic_resources,
  48.                 ic->private.local.ic_num_resources,
  49.                 values, XIM_GETICVALUES));
  50. }
  51.