comparison src/gaim.h @ 4082:4b04ecb3eb97

[gaim-migrate @ 4297] (22:54:38) Robot101: * Make sure prefs are saved before plugins are removed, and not afterwards. (22:54:59) Robot101: * Move do_quit() into aim.c and make sure everything appropriate uses it. (22:55:12) Robot101: * Remove duplicated cancel_login for closing the main window, use do_quit instead. (22:55:49) Robot101: * Remove uncalled code pertaining to closing the about window from when it was called via gaim -v. (22:56:06) LSchiere: what's this in sounds? (22:56:29) Robot101: * Add correct ifdefs to prefs so only compiled-in sound methods are shown. (22:56:34) LSchiere: if you broke my sounds... (22:57:07) Robot101: * Remove unused sound order data, and clarify comments and debug output. (22:57:56) Robot101: * Remove duplicated check which is performed at the start of play_file anyway. (22:58:03) Robot101: that's the lot committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 16 Dec 2002 03:58:54 +0000
parents 3ccbdf8e7f8d
children fcc6db86f5c7
comparison
equal deleted inserted replaced
4081:b35cf600fe30 4082:4b04ecb3eb97
323 #define SND_POUNCE_DEFAULT 9 323 #define SND_POUNCE_DEFAULT 9
324 #define SND_CHAT_NICK 10 324 #define SND_CHAT_NICK 10
325 #define NUM_SOUNDS 11 325 #define NUM_SOUNDS 11
326 326
327 extern char *sound_file[NUM_SOUNDS]; 327 extern char *sound_file[NUM_SOUNDS];
328 extern int sound_order[];
329 328
330 /* global sound struct */ 329 /* global sound struct */
331 struct sound_struct { 330 struct sound_struct {
332 char *label; 331 char *label;
333 guint opt; 332 guint opt;
356 extern char sound_cmd[2048]; 355 extern char sound_cmd[2048];
357 extern char web_command[2048]; 356 extern char web_command[2048];
358 extern struct save_pos blist_pos; 357 extern struct save_pos blist_pos;
359 extern struct window_size conv_size, buddy_chat_size; 358 extern struct window_size conv_size, buddy_chat_size;
360 359
360 /* Functions in aim.c */
361 extern void do_quit();
362
361 /* Functions in buddy.c */ 363 /* Functions in buddy.c */
362 extern void do_quit();
363 extern void signoff(struct gaim_connection *); 364 extern void signoff(struct gaim_connection *);
364 extern void do_pounce(struct gaim_connection *, char *, int); 365 extern void do_pounce(struct gaim_connection *, char *, int);
365 void create_prpl_icon(GtkWidget *widget, struct gaim_connection *gc, 366 void create_prpl_icon(GtkWidget *widget, struct gaim_connection *gc,
366 GdkPixmap **pixmap, GdkBitmap **mask); 367 GdkPixmap **pixmap, GdkBitmap **mask);
367 368