# HG changeset patch # User Myhailo Danylenko # Date 1268472985 -3600 # Node ID 14b4866cc9f23f81898daf3089feb1689da34868 # Parent 7ee390513463761570b522223c3bd48e1263aa19 Update modules to use new api diff -r 7ee390513463 -r 14b4866cc9f2 mcabber/modules/beep/beep.c --- a/mcabber/modules/beep/beep.c Sat Mar 13 10:29:18 2010 +0100 +++ b/mcabber/modules/beep/beep.c Sat Mar 13 10:36:25 2010 +0100 @@ -25,16 +25,23 @@ #include #include #include +#include static void beep_init (void); static void beep_uninit (void); /* Module description */ module_info_t info_beep = { - .mcabber_version = "0.10.0", + .branch = MCABBER_BRANCH, .requires = NULL, .init = beep_init, .uninit = beep_uninit, + .api = MCABBER_API_VERSION, + .version = MCABBER_VERSION, + .description = "Simple beeper module\n" + "Recognizes option beep_enable\n" + "Provides command /beep", + .next = NULL, }; static guint beep_cid = 0;