1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 01:13:13 +02:00

BUILD : 1.7.8 (574) BUGS : N/A NOTES : Internal Events, Win32 can build with encryption, nickIsServices() works if format is nick@services

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@424 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b
2005-02-14 06:01:38 +00:00
parent f194129217
commit 59f3a38ffd
23 changed files with 1178 additions and 17 deletions
+53
View File
@@ -0,0 +1,53 @@
/**
* Simple module to show the usage of event messages and hooks
* This module is an example, and has no useful purpose!
*
* Please visit http://modules.anope.org for useful modules!
*
**/
#include "module.h"
#define AUTHOR "Anope"
#define VERSION "1.1"
int my_nick(char *source, int ac, char **av);
int my_save(char *message);
int AnopeInit(int argc, char **argv)
{
EvtMessage *msg = NULL;
EvtHook *hook = NULL;
int status;
msg = createEventHandler("NICK", my_nick);
status = moduleAddEventHandler(msg);
hook = createEventHook(EVENT_DB_SAVING, my_save);
status = moduleAddEventHook(hook);
moduleAddAuthor(AUTHOR);
moduleAddVersion(VERSION);
return MOD_CONT;
}
void AnopeFini(void)
{
/* unloading */
}
int my_nick(char *source, int ac, char **av)
{
alog("Internal Event - nick is %s",av[0]);
return MOD_CONT;
}
int my_save(char *message)
{
if (!stricmp(message, EVENT_START)) {
alog("Saving the databases! has started");
} else {
alog("Saving the databases is complete");
}
return MOD_CONT;
}
+1 -1
View File
@@ -1,2 +1,2 @@
SRCS=hs_moo.c ircd_catserv.c
SRCS=hs_moo.c ircd_catserv.c events.c