diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-30 05:50:25 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-30 05:50:25 +0000 |
commit | 7f555f08e7991c5c6d10a1f1bbeda82fb5f429f3 (patch) | |
tree | fcbeeeedde9d46a54dadb494ce4d1863161ba0fd /include/modules.h | |
parent | ccb8c76295f95e0c8b6b2fd23e8007fa18cf4641 (diff) |
Modified BotInfo to store a pointer to a command hash table (this is so modules like ss_main can store their own commands but still have them called by the core).
Updated the current sample of ss_main to utilize BotInfo instead of Service (which might be removed) as well as accept a HELP command.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1819 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 48be7c684..05ef6b524 100644 --- a/include/modules.h +++ b/include/modules.h @@ -123,7 +123,7 @@ typedef enum { MOD_OP_LOAD, MOD_OP_UNLOAD } ModuleOperation; /* Structure for information about a *Serv command. */ typedef struct Command_ Command; -typedef struct CommandHash_ CommandHash; +struct CommandHash; typedef struct ModuleLang_ ModuleLang; typedef struct ModuleHash_ ModuleHash; typedef struct Message_ Message; @@ -430,7 +430,7 @@ struct Command_ { Command *next; /* Next command responsible for the same command */ }; -struct CommandHash_ { +struct CommandHash { char *name; /* Name of the command */ Command *c; /* Actual command */ CommandHash *next; /* Next command */ |