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

  1. /* $XConsortium: XimTrInt.h,v 1.4 94/03/26 16:57:07 rws Exp $ */
  2. /******************************************************************
  3.  
  4.               Copyright 1992 by Sun Microsystems, Inc.
  5.           Copyright 1993, 1994 by FUJITSU LIMITED
  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
  10. that both that copyright notice and this permission notice appear
  11. in supporting documentation, and that the name of Sun Microsystems, Inc.
  12. not be used in advertising or publicity pertaining to distribution
  13. of the software without specific, written prior permission.
  14. Sun Microsystems, Inc. makes no representations about the suitability of
  15. this software for any purpose.  It is provided "as is" without
  16. express or implied warranty.
  17.  
  18. Sun Microsystems Inc. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
  19. SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
  20. IN NO EVENT SHALL Sun Microsystems, Inc. BE LIABLE FOR ANY SPECIAL, INDIRECT
  21. OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  22. OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  23. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  24. OR PERFORMANCE OF THIS SOFTWARE.
  25.  
  26.   Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc.
  27.       Takashi Fujiwara     FUJITSU LIMITED
  28.                    fujiwara@a80.tech.yk.fujitsu.co.jp
  29.  
  30. ******************************************************************/
  31.  
  32. #ifndef _XIMTRINT_H
  33. #define _XIMTRINT_H
  34.  
  35. #if NeedFunctionPrototypes
  36. #include "Ximint.h"
  37. #endif
  38.  
  39. typedef struct {
  40.     char    *transportname;
  41.     Bool     (*config)(
  42. #if NeedFunctionPrototypes
  43.             Xim,
  44.             char *
  45. #endif
  46.     );
  47. } TransportSW;
  48.  
  49. extern TransportSW _XimTransportRec[];
  50.  
  51. /*
  52.  * Global symbols
  53.  */
  54.  
  55. extern Bool    _XimXConf(
  56. #if NeedFunctionPrototypes
  57.     Xim         im,
  58.     char    *address
  59. #endif
  60. );
  61.  
  62. #if defined(TCPCONN) || defined(UNIXCONN) || defined(DNETCONN) || defined(STREAMSCONN)
  63.  
  64. extern Bool    _XimTransConf(
  65. #if NeedFunctionPrototypes
  66.     Xim         im,
  67.     char    *address
  68. #endif
  69. );
  70.  
  71. #endif
  72.  
  73. #endif /* _XIMTRINT_H */
  74.