comparison mcabber/modules/beep/beep.c @ 1780:e4378fbab5d7

Major API cleanup - bump API to 4 Get rid of old CamelCase names in screen.h
author Mikael Berthe <mikael@lilotux.net>
date Sun, 14 Mar 2010 12:09:08 +0100
parents 14b4866cc9f2
children 47699a09ceb3
comparison
equal deleted inserted replaced
1779:2911c950dcd1 1780:e4378fbab5d7
50 static void beep_hh (guint32 hid, hk_arg_t *args, gpointer userdata) 50 static void beep_hh (guint32 hid, hk_arg_t *args, gpointer userdata)
51 { 51 {
52 /* Check if beeping is enabled */ 52 /* Check if beeping is enabled */
53 if (settings_opt_get_int ("beep_enable")) 53 if (settings_opt_get_int ("beep_enable"))
54 /* *BEEP*! */ 54 /* *BEEP*! */
55 scr_Beep (); 55 scr_beep ();
56 } 56 }
57 57
58 /* beep command handler */ 58 /* beep command handler */
59 static void do_beep (char *args) 59 static void do_beep (char *args)
60 { 60 {