1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 12:23:14 +02:00

# BUILD : 1.7.14 (1041) # BUGS : 514 # NOTES : Fixed booboo. Thx to Trystan.

git-svn-id: svn://svn.anope.org/anope/trunk@1041 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@765 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-06-04 10:10:26 +00:00
parent 0118e0b185
commit 9e5bb79562
4 changed files with 11 additions and 7 deletions
+2 -2
View File
@@ -1347,8 +1347,8 @@ E char *host_resolve(char *host);
E void event_message_process(char *eventbuf);
E void eventprintf(char *fmt, ...);
E void event_process_hook(char *name, int argc, char **argv);
E void send_event(char *name, int argc, ...);
E void event_process_hook(const char *name, int argc, char **argv);
E void send_event(const char *name, int argc, ...);
#ifdef _WIN32
E char *GetWindowsVersion(void) ;
+3 -3
View File
@@ -273,8 +273,8 @@ int loadModule(Module *m,User *u); /* Load the given module into the program */
int protocol_module_init(void); /* Load the IRCD Protocol Module up*/
int unloadModule(Module *m, User *u); /* Unload the given module from the pro */
int prepForUnload(Module *m); /* Prepare the module for unload */
MDE void moduleAddVersion(char *version);
MDE void moduleAddAuthor(char *author);
MDE void moduleAddVersion(const char *version);
MDE void moduleAddAuthor(const char *author);
void modules_init(void);
void modules_delayed_init(void);
void moduleCallBackPrepForUnload(char *mod_name);
@@ -316,7 +316,7 @@ Command *findCommand(CommandHash *cmdTable[], const char *name); /* Find a comma
/*************************************************************************/
/* Message Managment Functions */
MDE Message *createMessage(char *name,int (*func)(char *source, int ac, char **av));
MDE Message *createMessage(const char *name,int (*func)(char *source, int ac, char **av));
Message *findMessage(MessageHash *msgTable[], const char *name); /* Find a Message */
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 */
+1 -1
View File
@@ -148,7 +148,7 @@ void event_message_process(char *eventbuf)
free(av);
}
void event_process_hook(char *name, int argc, char **argv)
void event_process_hook(const char *name, int argc, char **argv)
{
int retVal = 0;
EvtHook *current = NULL;
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="14"
VERSION_EXTRA=""
VERSION_BUILD="1040"
VERSION_BUILD="1041"
# $Log$
#
# BUILD : 1.7.14 (1041)
# BUGS : 514
# NOTES : Fixed booboo. Thx to Trystan.
#
# BUILD : 1.7.14 (1040)
# BUGS : 509 511
# NOTES : Fixed compiler warnigs, thx to trystan. again.