1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 06:06:39 +02:00

Fix build under Windows.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2458 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
cyberbotx
2009-08-20 02:49:09 +00:00
parent 6ce5c90619
commit 0f3110e271
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1014,7 +1014,7 @@ MDE void moduleDisplayHelp(const char *service, User *u);
/*************************************************************************/
/*************************************************************************/
/* Command Managment Functions */
Command *findCommand(CommandHash *cmdTable[], const char *name); /* Find a command */
MDE Command *findCommand(CommandHash *cmdTable[], const char *name); /* Find a command */
/*************************************************************************/
+1 -1
View File
@@ -9,7 +9,7 @@
*
*/
class OperType
class CoreExport OperType
{
private:
/** The name of this opertype, e.g. "sra".
+2 -2
View File
@@ -1397,9 +1397,9 @@ class Anope
/** Pair of nick/opertype lookup. It's stored like this currently, because config is parsed before db load.
* XXX: It would be nice to not need this. UGH.
*/
extern std::list<std::pair<std::string, std::string> > svsopers_in_config;
E std::list<std::pair<std::string, std::string> > svsopers_in_config;
/** List of available opertypes.
*/
extern std::list<OperType *> MyOperTypes;
E std::list<OperType *> MyOperTypes;
#endif /* SERVICES_H */