diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-04-09 20:29:46 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-04-09 20:29:46 +0000 |
commit | 5c72c70268d9966794ec1e525e2a8f97b7451d7f (patch) | |
tree | 510cb376bc5303401a8531a884b272e82b221830 /lib/libICE/include | |
parent | 34effda01103f55888704a1c1cca2d2c558be93b (diff) |
Update to libICE 1.0.5.
Main change: ansification.
Bumped major since some symbols which were not part of the public API
have been changed to 'static'.
Diffstat (limited to 'lib/libICE/include')
-rw-r--r-- | lib/libICE/include/X11/ICE/ICElib.h | 4 | ||||
-rw-r--r-- | lib/libICE/include/X11/ICE/ICEmsg.h | 23 |
2 files changed, 25 insertions, 2 deletions
diff --git a/lib/libICE/include/X11/ICE/ICElib.h b/lib/libICE/include/X11/ICE/ICElib.h index eb7a3aa32..5950ecde6 100644 --- a/lib/libICE/include/X11/ICE/ICElib.h +++ b/lib/libICE/include/X11/ICE/ICElib.h @@ -214,7 +214,7 @@ extern int IceRegisterForProtocolSetup ( int /* versionCount */, IcePoVersionRec * /* versionRecs */, int /* authCount */, - char ** /* authNames */, + const char ** /* authNames */, IcePoAuthProc * /* authProcs */, IceIOErrorProc /* IOErrorProc */ ); @@ -226,7 +226,7 @@ extern int IceRegisterForProtocolReply ( int /* versionCount */, IcePaVersionRec * /* versionRecs */, int /* authCount */, - char ** /* authNames */, + const char ** /* authNames */, IcePaAuthProc * /* authProcs */, IceHostBasedAuthProc /* hostBasedAuthProc */, IceProtocolSetupProc /* protocolSetupProc */, diff --git a/lib/libICE/include/X11/ICE/ICEmsg.h b/lib/libICE/include/X11/ICE/ICEmsg.h index ddae02784..3329ee942 100644 --- a/lib/libICE/include/X11/ICE/ICEmsg.h +++ b/lib/libICE/include/X11/ICE/ICEmsg.h @@ -89,6 +89,29 @@ extern void _IceErrorBadValue ( 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. |