diff libpurple/prpl.h @ 25720:551a462b346a

Changed PurpleMediaStreamType to PurpleMediaSessionType.
author Mike Ruprecht <maiku@soc.pidgin.im>
date Sat, 09 Aug 2008 03:51:42 +0000
parents 1aa383ee5fc8
children 25e2ab1fff1d
line wrap: on
line diff
--- a/libpurple/prpl.h	Sat Aug 09 03:11:46 2008 +0000
+++ b/libpurple/prpl.h	Sat Aug 09 03:51:42 2008 +0000
@@ -450,7 +450,7 @@
 	 * @return The newly created media object.
 	 */
 	PurpleMedia  *(*initiate_media)(PurpleConnection *gc, const char *who,
-					PurpleMediaStreamType type);
+					PurpleMediaSessionType type);
 
 	/**
 	 * Checks to see if the given contact supports the given type of media session.
@@ -461,7 +461,7 @@
 	 * @return @c TRUE The contact supports the given media type, or @c FALSE otherwise.
 	 */
 	gboolean (*can_do_media)(PurpleConnection *gc, const char *who,
-				 PurpleMediaStreamType type);
+				 PurpleMediaSessionType type);
 };
 
 #define PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl, member) \
@@ -761,7 +761,7 @@
  */
 gboolean purple_prpl_can_do_media(PurpleAccount *account,
 				  const char *who, 
-				  PurpleMediaStreamType type);
+				  PurpleMediaSessionType type);
 
 /**
  * Initiates a media session with the given contact.
@@ -774,7 +774,7 @@
  */
 PurpleMedia *purple_prpl_initiate_media(PurpleAccount *account,
 					const char *who,
-					PurpleMediaStreamType type);
+					PurpleMediaSessionType type);
 
 /*@}*/