diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 00:07:24 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 00:07:24 +0000 |
commit | ae6dd5d9c54ab52dfd0c9b25304e8a136ce19f91 (patch) | |
tree | 74ee3150edb9938c22a09ff2a1c30d123aa1d8bb /include/modules.h | |
parent | 6adc4b6c61bdc39a454d7bd4e19a58c6eda0a6e9 (diff) |
Last error fixes, more staticisation.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1575 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h index 34a4a866f..737081b7e 100644 --- a/include/modules.h +++ b/include/modules.h @@ -330,8 +330,8 @@ Message *findMessage(MessageHash *msgTable[], const char *name); /* Find a Messa MDE int addMessage(MessageHash *msgTable[], Message *m, int pos); /* Add a Message to a Message table */ MDE int addCoreMessage(MessageHash *msgTable[], Message *m); /* Add a Message to a Message table */ MDE int moduleAddMessage(Message *m, int pos); -int delMessage(MessageHash *msgTable[], Message *m, char *mod_name); /* Del a Message from a msg table */ -MDE int moduleDelMessage(char *name); +int delMessage(MessageHash *msgTable[], Message *m, const char *mod_name); /* Del a Message from a msg table */ +MDE int moduleDelMessage(const char *name); int destroyMessage(Message *m); /* destroy a Message*/ /*************************************************************************/ |