1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 12:56:38 +02:00

# BUILD : 1.7.14 (1087) # BUGS : 545 550 541 # NOTES : Various fixes.

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@811 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-07-14 17:38:00 +00:00
parent 18c0fe03fc
commit cc34de2be6
8 changed files with 47 additions and 17 deletions
+1
View File
@@ -1212,6 +1212,7 @@ E void anope_cmd_part(char *nick, char *chan, const char *fmt, ...); /* P
E void anope_cmd_pass(char *pass); /* PASS */
E void anope_cmd_pong(char *servname, char *who); /* PONG */
E void anope_cmd_privmsg(char *source, char *dest, const char *fmt, ...); /* PRIVMSG */
E void anope_cmd_action(char *source, char *dest, const char *fmt, ...); /* PRIVMSG */
E void anope_cmd_privmsg2(char *source, char *dest, char *msg); /* PRIVMSG */
E void anope_cmd_serv_privmsg(char *source, char *dest, char *msg); /* PRIVMSG */
E void anope_cmd_protoctl(); /* PROTOCTL */
-4
View File
@@ -32,11 +32,7 @@ typedef HMODULE ano_module_t;
#else
typedef void * ano_module_t;
#ifdef HAS_RTLD_LOCAL
#define ano_modopen(file) dlopen(file, RTLD_LAZY|RTLD_LOCAL)
#else
#define ano_modopen(file) dlopen(file, RTLD_LAZY)
#endif
#define ano_moderr() dlerror()
#define ano_modsym(file, symbol) dlsym(file, DL_PREFIX symbol)
#define ano_modclose(file) dlclose(file)