ICElib.h | ICElib.h | |||
---|---|---|---|---|
skipping to change at line 215 | skipping to change at line 215 | |||
_XFUNCPROTOBEGIN | _XFUNCPROTOBEGIN | |||
extern int IceRegisterForProtocolSetup ( | extern int IceRegisterForProtocolSetup ( | |||
char * /* protocolName */, | char * /* protocolName */, | |||
char * /* vendor */, | char * /* vendor */, | |||
char * /* release */, | char * /* release */, | |||
int /* versionCount */, | int /* versionCount */, | |||
IcePoVersionRec * /* versionRecs */, | IcePoVersionRec * /* versionRecs */, | |||
int /* authCount */, | int /* authCount */, | |||
char ** /* authNames */, | const char ** /* authNames */, | |||
IcePoAuthProc * /* authProcs */, | IcePoAuthProc * /* authProcs */, | |||
IceIOErrorProc /* IOErrorProc */ | IceIOErrorProc /* IOErrorProc */ | |||
); | ); | |||
extern int IceRegisterForProtocolReply ( | extern int IceRegisterForProtocolReply ( | |||
char * /* protocolName */, | char * /* protocolName */, | |||
char * /* vendor */, | char * /* vendor */, | |||
char * /* release */, | char * /* release */, | |||
int /* versionCount */, | int /* versionCount */, | |||
IcePaVersionRec * /* versionRecs */, | IcePaVersionRec * /* versionRecs */, | |||
int /* authCount */, | int /* authCount */, | |||
char ** /* authNames */, | const char ** /* authNames */, | |||
IcePaAuthProc * /* authProcs */, | IcePaAuthProc * /* authProcs */, | |||
IceHostBasedAuthProc /* hostBasedAuthProc */, | IceHostBasedAuthProc /* hostBasedAuthProc */, | |||
IceProtocolSetupProc /* protocolSetupProc */, | IceProtocolSetupProc /* protocolSetupProc */, | |||
IceProtocolActivateProc /* protocolActivateProc */, | IceProtocolActivateProc /* protocolActivateProc */, | |||
IceIOErrorProc /* IOErrorProc */ | IceIOErrorProc /* IOErrorProc */ | |||
); | ); | |||
extern IceConn IceOpenConnection ( | extern IceConn IceOpenConnection ( | |||
char * /* networkIdsList */, | char * /* networkIdsList */, | |||
IcePointer /* context */, | IcePointer /* context */, | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
ICEmsg.h | ICEmsg.h | |||
---|---|---|---|---|
skipping to change at line 90 | skipping to change at line 90 | |||
extern void _IceErrorBadValue ( | extern void _IceErrorBadValue ( | |||
IceConn /* iceConn */, | IceConn /* iceConn */, | |||
int /* majorOpcode */, | int /* majorOpcode */, | |||
int /* offendingMinor */, | int /* offendingMinor */, | |||
int /* offset */, | int /* offset */, | |||
int /* length */, | int /* length */, | |||
IcePointer /* value */ | IcePointer /* value */ | |||
); | ); | |||
extern IcePoAuthStatus _IcePoMagicCookie1Proc ( | ||||
IceConn /* iceConn */, | ||||
IcePointer * /* authStatePtr */, | ||||
Bool /* cleanUp */, | ||||
Bool /* swap */, | ||||
int /* authDataLen */, | ||||
IcePointer /* authData */, | ||||
int * /* replyDataLenRet */, | ||||
IcePointer * /* replyDataRet */, | ||||
char ** /* errorStringRet */ | ||||
); | ||||
extern IcePaAuthStatus _IcePaMagicCookie1Proc ( | ||||
IceConn /* iceConn */, | ||||
IcePointer * /* authStatePtr */, | ||||
Bool /* swap */, | ||||
int /* authDataLen */, | ||||
IcePointer /* authData */, | ||||
int * /* replyDataLenRet */, | ||||
IcePointer * /* replyDataRet */, | ||||
char ** /* errorStringRet */ | ||||
); | ||||
/* | /* | |||
* Macro to check if IO operations are valid on an ICE connection. | * Macro to check if IO operations are valid on an ICE connection. | |||
*/ | */ | |||
#define IceValidIO(_iceConn) _iceConn->io_ok | #define IceValidIO(_iceConn) _iceConn->io_ok | |||
/* | /* | |||
* Macros for writing messages. | * Macros for writing messages. | |||
*/ | */ | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 23 lines changed or added | |||