diff src/prpl.h @ 11257:90be432e8385

[gaim-migrate @ 13432] Removed warning from core. I think you should be able to see others' warning levels in the tooltip, but I haven't managed to warn myself from any client. Being able to warn others will be dependent on protocol-specific convo menus. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 14 Aug 2005 03:50:35 +0000
parents 11e465b55fe6
children fb702c34794b
line wrap: on
line diff
--- a/src/prpl.h	Sat Aug 13 22:09:34 2005 +0000
+++ b/src/prpl.h	Sun Aug 14 03:50:35 2005 +0000
@@ -235,7 +235,6 @@
 	void (*rem_permit)(GaimConnection *, const char *name);
 	void (*rem_deny)(GaimConnection *, const char *name);
 	void (*set_permit_deny)(GaimConnection *);
-	void (*warn)(GaimConnection *, const char *who, gboolean anonymous);
 	void (*join_chat)(GaimConnection *, GHashTable *components);
 	void (*reject_chat)(GaimConnection *, GHashTable *components);
 	char *(*get_chat_name)(GHashTable *components);
@@ -343,21 +342,6 @@
 void gaim_prpl_got_account_status(GaimAccount *account,
 								  const char *status_id, const char *attr_id,
 								  ...);
-
-/**
- * Notifies Gaim that an account's warning level has changed.
- *
- * This is meant to be called from protocol plugins.
- *
- * @param account  The account the user is on.
- * @param username The user that warned the account.
- * @param level    The new warning level.
- */
-void gaim_prpl_got_account_warning_level(GaimAccount *account,
-										 const char *username,
-										 unsigned int level);
-
-
 /**
  * Notifies Gaim that a user's idle state and time have changed.
  *
@@ -399,19 +383,6 @@
  */
 void gaim_prpl_got_user_status(GaimAccount *account, const char *name,
 							   const char *status_id, const char *attr_id, ...);
-
-/**
- * Notifies Gaim that a user's warning level has changed.
- *
- * This is meant to be called from protocol plugins.
- *
- * @param account The account the user is on.
- * @param name    The screen name of the user.
- * @param level   The new warning level.
- */
-void gaim_prpl_got_user_warning_level(GaimAccount *account, const char *name,
-									  unsigned int level);
-
 /**
  * Informs the server that an account's status changed.
  *