ICElib.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:10k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: ICElib.h,v 1.5 2001/02/09 02:03:26 xorgcvs Exp $ */
  2. /******************************************************************************
  3. Copyright 1993, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. Author: Ralph Mor, X Consortium
  21. ******************************************************************************/
  22. /* $XFree86: xc/lib/ICE/ICElib.h,v 3.4 2001/12/14 19:53:35 dawes Exp $ */
  23. #ifndef _ICELIB_H_
  24. #define _ICELIB_H_
  25. #include <X11/ICE/ICE.h>
  26. #include <X11/Xfuncproto.h>
  27. #define Bool int
  28. #define Status int
  29. #define True 1
  30. #define False 0
  31. typedef void *IcePointer;
  32. typedef enum {
  33.     IcePoAuthHaveReply,
  34.     IcePoAuthRejected,
  35.     IcePoAuthFailed,
  36.     IcePoAuthDoneCleanup
  37. } IcePoAuthStatus;
  38. typedef enum {
  39.     IcePaAuthContinue,
  40.     IcePaAuthAccepted,
  41.     IcePaAuthRejected,
  42.     IcePaAuthFailed
  43. } IcePaAuthStatus;
  44. typedef enum {
  45.     IceConnectPending,
  46.     IceConnectAccepted,
  47.     IceConnectRejected,
  48.     IceConnectIOError
  49. } IceConnectStatus;
  50. typedef enum {
  51.     IceProtocolSetupSuccess,
  52.     IceProtocolSetupFailure,
  53.     IceProtocolSetupIOError,
  54.     IceProtocolAlreadyActive
  55. } IceProtocolSetupStatus;
  56. typedef enum {
  57.     IceAcceptSuccess,
  58.     IceAcceptFailure,
  59.     IceAcceptBadMalloc
  60. } IceAcceptStatus;
  61. typedef enum {
  62.     IceClosedNow,
  63.     IceClosedASAP,
  64.     IceConnectionInUse,
  65.     IceStartedShutdownNegotiation
  66. } IceCloseStatus;
  67. typedef enum {
  68.     IceProcessMessagesSuccess,
  69.     IceProcessMessagesIOError,
  70.     IceProcessMessagesConnectionClosed
  71. } IceProcessMessagesStatus;
  72. typedef struct {
  73.     unsigned long sequence_of_request;
  74.     int major_opcode_of_request;
  75.     int minor_opcode_of_request;
  76.     IcePointer reply;
  77. } IceReplyWaitInfo;
  78. typedef struct _IceConn *IceConn;
  79. typedef struct _IceListenObj *IceListenObj;
  80. typedef void (*IceWatchProc) (
  81.     IceConn /* iceConn */,
  82.     IcePointer /* clientData */,
  83.     Bool /* opening */,
  84.     IcePointer * /* watchData */
  85. );
  86. typedef void (*IcePoProcessMsgProc) (
  87.     IceConn  /* iceConn */,
  88.     IcePointer /* clientData */,
  89.     int /* opcode */,
  90.     unsigned long /* length */,
  91.     Bool /* swap */,
  92.     IceReplyWaitInfo *  /* replyWait */,
  93.     Bool * /* replyReadyRet */
  94. );
  95. typedef void (*IcePaProcessMsgProc) (
  96.     IceConn  /* iceConn */,
  97.     IcePointer /* clientData */,
  98.     int /* opcode */,
  99.     unsigned long /* length */,
  100.     Bool /* swap */
  101. );
  102. typedef struct {
  103.     int  major_version;
  104.     int  minor_version;
  105.     IcePoProcessMsgProc  process_msg_proc;
  106. } IcePoVersionRec;
  107. typedef struct {
  108.     int  major_version;
  109.     int  minor_version;
  110.     IcePaProcessMsgProc  process_msg_proc;
  111. } IcePaVersionRec;
  112. typedef IcePoAuthStatus (*IcePoAuthProc) (
  113.     IceConn /* iceConn */,
  114.     IcePointer * /* authStatePtr */,
  115.     Bool /* cleanUp */,
  116.     Bool /* swap */,
  117.     int /* authDataLen */,
  118.     IcePointer /* authData */,
  119.     int * /* replyDataLenRet */,
  120.     IcePointer * /* replyDataRet */,
  121.     char ** /* errorStringRet */
  122. );
  123. typedef IcePaAuthStatus (*IcePaAuthProc) (
  124.     IceConn /* iceConn */,
  125.     IcePointer * /* authStatePtr */,
  126.     Bool /* swap */,
  127.     int /* authDataLen */,
  128.     IcePointer /* authData */,
  129.     int * /* replyDataLenRet */,
  130.     IcePointer * /* replyDataRet */,
  131.     char ** /* errorStringRet */
  132. );
  133. typedef Bool (*IceHostBasedAuthProc) (
  134.     char * /* hostName */
  135. );
  136. typedef Status (*IceProtocolSetupProc) (
  137.     IceConn  /* iceConn */,
  138.     int /* majorVersion */,
  139.     int /* minorVersion */,
  140.     char * /* vendor */,
  141.     char * /* release */,
  142.     IcePointer * /* clientDataRet */,
  143.     char ** /* failureReasonRet */
  144. );
  145. typedef void (*IceProtocolActivateProc) (
  146.     IceConn  /* iceConn */,
  147.     IcePointer /* clientData */
  148. );
  149. typedef void (*IceIOErrorProc) (
  150.     IceConn  /* iceConn */
  151. );
  152. typedef void (*IcePingReplyProc) (
  153.     IceConn  /* iceConn */,
  154.     IcePointer /* clientData */
  155. );
  156. typedef void (*IceErrorHandler) (
  157.     IceConn  /* iceConn */,
  158.     Bool /* swap */,
  159.     int /* offendingMinorOpcode */,
  160.     unsigned long  /* offendingSequence */,
  161.     int  /* errorClass */,
  162.     int /* severity */,
  163.     IcePointer /* values */
  164. );
  165. typedef void (*IceIOErrorHandler) (
  166.     IceConn  /* iceConn */
  167. );
  168. /*
  169.  * Function prototypes
  170.  */
  171. _XFUNCPROTOBEGIN
  172. extern int IceRegisterForProtocolSetup (
  173.     char * /* protocolName */,
  174.     char * /* vendor */,
  175.     char * /* release */,
  176.     int /* versionCount */,
  177.     IcePoVersionRec * /* versionRecs */,
  178.     int /* authCount */,
  179.     char ** /* authNames */,
  180.     IcePoAuthProc * /* authProcs */,
  181.     IceIOErrorProc /* IOErrorProc */
  182. );
  183. extern int IceRegisterForProtocolReply (
  184.     char * /* protocolName */,
  185.     char * /* vendor */,
  186.     char * /* release */,
  187.     int /* versionCount */,
  188.     IcePaVersionRec * /* versionRecs */,
  189.     int /* authCount */,
  190.     char ** /* authNames */,
  191.     IcePaAuthProc * /* authProcs */,
  192.     IceHostBasedAuthProc /* hostBasedAuthProc */,
  193.     IceProtocolSetupProc /* protocolSetupProc */,
  194.     IceProtocolActivateProc /* protocolActivateProc */,
  195.     IceIOErrorProc /* IOErrorProc */
  196. );
  197. extern IceConn IceOpenConnection (
  198.     char * /* networkIdsList */,
  199.     IcePointer /* context */,
  200.     Bool /* mustAuthenticate */,
  201.     int /* majorOpcodeCheck */,
  202.     int /* errorLength */,
  203.     char * /* errorStringRet */
  204. );
  205. extern IcePointer IceGetConnectionContext (
  206.     IceConn /* iceConn */
  207. );
  208. extern Status IceListenForConnections (
  209.     int * /* countRet */,
  210.     IceListenObj ** /* listenObjsRet */,
  211.     int /* errorLength */,
  212.     char * /* errorStringRet */
  213. );
  214. extern Status IceListenForWellKnownConnections (
  215.     char * /* port */,
  216.     int * /* countRet */,
  217.     IceListenObj ** /* listenObjsRet */,
  218.     int /* errorLength */,
  219.     char * /* errorStringRet */
  220. );
  221. extern int IceGetListenConnectionNumber (
  222.     IceListenObj /* listenObj */
  223. );
  224. extern char *IceGetListenConnectionString (
  225.     IceListenObj /* listenObj */
  226. );
  227. extern char *IceComposeNetworkIdList (
  228.     int /* count */,
  229.     IceListenObj * /* listenObjs */
  230. );
  231. extern void IceFreeListenObjs (
  232.     int /* count */,
  233.     IceListenObj * /* listenObjs */
  234. );
  235. extern void IceSetHostBasedAuthProc (
  236.     IceListenObj /* listenObj */,
  237.     IceHostBasedAuthProc    /* hostBasedAuthProc */
  238. );
  239. extern IceConn IceAcceptConnection (
  240.     IceListenObj /* listenObj */,
  241.     IceAcceptStatus * /* statusRet */
  242. );
  243. extern void IceSetShutdownNegotiation (
  244.     IceConn /* iceConn */,
  245.     Bool /* negotiate */
  246. );
  247. extern Bool IceCheckShutdownNegotiation (
  248.     IceConn /* iceConn */
  249. );
  250. extern IceCloseStatus IceCloseConnection (
  251.     IceConn /* iceConn */
  252. );
  253. extern Status IceAddConnectionWatch (
  254.     IceWatchProc /* watchProc */,
  255.     IcePointer /* clientData */
  256. );
  257. extern void IceRemoveConnectionWatch (
  258.     IceWatchProc /* watchProc */,
  259.     IcePointer /* clientData */
  260. );
  261. extern IceProtocolSetupStatus IceProtocolSetup (
  262.     IceConn /* iceConn */,
  263.     int  /* myOpcode */,
  264.     IcePointer /* clientData */,
  265.     Bool /* mustAuthenticate */,
  266.     int * /* majorVersionRet */,
  267.     int * /* minorVersionRet */,
  268.     char ** /* vendorRet */,
  269.     char ** /* releaseRet */,
  270.     int /* errorLength */,
  271.     char * /* errorStringRet */
  272. );
  273. extern Status IceProtocolShutdown (
  274.     IceConn /* iceConn */,
  275.     int /* majorOpcode */
  276. );
  277. extern IceProcessMessagesStatus IceProcessMessages (
  278.     IceConn /* iceConn */,
  279.     IceReplyWaitInfo * /* replyWait */,
  280.     Bool * /* replyReadyRet */
  281. );
  282. extern Status IcePing (
  283.    IceConn /* iceConn */,
  284.    IcePingReplyProc /* pingReplyProc */,
  285.    IcePointer /* clientData */
  286. );
  287. extern char *IceAllocScratch (
  288.    IceConn /* iceConn */,
  289.    unsigned long /* size */
  290. );
  291. extern int IceFlush (
  292.    IceConn /* iceConn */
  293. );
  294. extern int IceGetOutBufSize (
  295.    IceConn /* iceConn */
  296. );
  297. extern int IceGetInBufSize (
  298.    IceConn /* iceConn */
  299. );
  300. extern IceConnectStatus IceConnectionStatus (
  301.     IceConn /* iceConn */
  302. );
  303. extern char *IceVendor (
  304.     IceConn /* iceConn */
  305. );
  306. extern char *IceRelease (
  307.     IceConn /* iceConn */
  308. );
  309. extern int IceProtocolVersion (
  310.     IceConn /* iceConn */
  311. );
  312. extern int IceProtocolRevision (
  313.     IceConn /* iceConn */
  314. );
  315. extern int IceConnectionNumber (
  316.     IceConn /* iceConn */
  317. );
  318. extern char *IceConnectionString (
  319.     IceConn /* iceConn */
  320. );
  321. extern unsigned long IceLastSentSequenceNumber (
  322.     IceConn /* iceConn */
  323. );
  324. extern unsigned long IceLastReceivedSequenceNumber (
  325.     IceConn /* iceConn */
  326. );
  327. extern Bool IceSwapping (
  328.     IceConn /* iceConn */
  329. );
  330. extern IceErrorHandler IceSetErrorHandler (
  331.     IceErrorHandler  /* handler */
  332. );
  333. extern IceIOErrorHandler IceSetIOErrorHandler (
  334.     IceIOErrorHandler  /* handler */
  335. );
  336. extern char *IceGetPeerName (
  337.     IceConn /* iceConn */
  338. );
  339. /*
  340.  * Multithread Routines
  341.  */
  342. extern Status IceInitThreads (
  343.     void
  344. );
  345. extern void IceAppLockConn (
  346.     IceConn /* iceConn */
  347. );
  348. extern void IceAppUnlockConn (
  349.     IceConn /* iceConn */
  350. );
  351. _XFUNCPROTOEND
  352. #endif /* _ICELIB_H_ */