catserv_messages.c

Go to the documentation of this file.
00001 #include "catserv_messages.h"
00002 #include "module.h"
00003 #include "meow.h"
00004 #include "purr.h"
00005 
00006 void addMessageList(void)
00007 {
00008     Command *c;
00009     c = createCommand("meow", do_meow, NULL, -1, -1, -1, -1, -1);
00010     moduleAddCommand(Catserv_cmdTable, c, MOD_UNIQUE);
00011     c = createCommand("purr", do_purr, NULL, -1, -1, -1, -1, -1);
00012     moduleAddCommand(Catserv_cmdTable, c, MOD_UNIQUE);
00013 }
00014