libpurple/whiteboard.h

branch
soc.2013.gobjectification.plugins
changeset 36637
9b0109ae118d
parent 36545
23b59a16c808
child 36693
e10df50ee8a9
--- a/libpurple/whiteboard.h	Sun Sep 01 05:01:14 2013 +0530
+++ b/libpurple/whiteboard.h	Sun Sep 01 14:24:24 2013 +0530
@@ -30,9 +30,9 @@
 typedef struct _PurpleWhiteboard PurpleWhiteboard;
 
 /**
- * Whiteboard PRPL Operations
+ * Whiteboard protocol operations
  */
-typedef struct _PurpleWhiteboardPrplOps PurpleWhiteboardPrplOps;
+typedef struct _PurpleWhiteboardOps PurpleWhiteboardOps;
 
 #include "account.h"
 
@@ -60,9 +60,9 @@
 } PurpleWhiteboardUiOps;
 
 /**
- * PurpleWhiteboard PRPL Operations
+ * PurpleWhiteboard Protocol Operations
  */
-struct _PurpleWhiteboardPrplOps
+struct _PurpleWhiteboardOps
 {
 	void (*start)(PurpleWhiteboard *wb);                                   /**< start function */
 	void (*end)(PurpleWhiteboard *wb);                                     /**< end function */
@@ -94,12 +94,12 @@
 void purple_whiteboard_set_ui_ops(PurpleWhiteboardUiOps *ops);
 
 /**
- * Sets the prpl operations for a whiteboard
+ * Sets the protocol operations for a whiteboard
  *
- * @param wb  The whiteboard for which to set the prpl operations
- * @param ops The prpl operations to set
+ * @param wb  The whiteboard for which to set the protocol operations
+ * @param ops The protocol operations to set
  */
-void purple_whiteboard_set_protocol_ops(PurpleWhiteboard *wb, PurpleWhiteboardPrplOps *ops);
+void purple_whiteboard_set_protocol_ops(PurpleWhiteboard *wb, PurpleWhiteboardOps *ops);
 
 /**
  * Creates a whiteboard

mercurial