diff src/protocols/qq/utils.h @ 13989:16102b9c5c4a

[gaim-migrate @ 16562] *Eliminated all Gtk-related code from the prpl. Notably, this included the group ("Qun") administrative dialog and a dialog for setting and viewing personal information. Code for the latter now uses the gaim UI, while the former is currently disabled. *Disabled a few non-functional/non-essential menu actions. These included: IP lookup, system logging, about dialog, and qq_buddy_menu. committer: Tailor Script <tailor@pidgin.im>
author Mark Huetsch <markhuetsch>
date Mon, 24 Jul 2006 13:39:12 +0000
parents 983fd420e86b
children 9516a796ed5f
line wrap: on
line diff
--- a/src/protocols/qq/utils.h	Mon Jul 24 09:25:48 2006 +0000
+++ b/src/protocols/qq/utils.h	Mon Jul 24 13:39:12 2006 +0000
@@ -20,13 +20,11 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-// START OF FILE
-/*****************************************************************************/
 #ifndef _QQ_MY_UTILS_H_
 #define _QQ_MY_UTILS_H_
 
+#include <stdio.h>
 #include <glib.h>
-#include <gtk/gtk.h>
 
 #define QQ_NAME_PREFIX    "qq-"
 
@@ -36,19 +34,15 @@
 
 gchar **split_data(guint8 * data, gint len, const gchar * delimit, gint expected_fields);
 gchar *gen_ip_str(guint8 * ip);
-guint8 *str_ip_gen(gchar *str); //by gfhuang
+guint8 *str_ip_gen(gchar *str);
 gchar *uid_to_gaim_name(guint32 uid);
 
 guint32 gaim_name_to_uid(const gchar * name);
 
 gchar *get_icon_name(gint set, gint suffix);
 
-GdkPixbuf *get_face_gdkpixbuf(guint8 index);
-
 void try_dump_as_gbk(guint8 * data, gint len);
 
 gchar *hex_dump_to_str(const guint8 * buf, gint buf_len);
 
 #endif
-/*****************************************************************************/
-// END OF FILE