diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-15 17:56:39 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-15 17:56:39 +0000 |
commit | 8784fa995e7e9aaf2f1ecf9f40daef1172580ccd (patch) | |
tree | a0fe795b748b4204c8f3c503810f6ff9428d5604 /include/modules.h | |
parent | b2b0e1d235686ff8389d2930a53366abefd1bb9d (diff) |
Remove moduleAddData|GetData|DelData and all associated mess. Extensible base replaces all this in a much cleaner and more transparent fashion.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1706 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/modules.h b/include/modules.h index 6953ec476..c09b234c2 100644 --- a/include/modules.h +++ b/include/modules.h @@ -458,11 +458,6 @@ MDE void moduleDeleteLanguage(int langNumber); /*************************************************************************/ -MDE char *moduleGetData(ModuleData **md, const char *key); /* Get the value for this key from this struct */ -MDE int moduleAddData(ModuleData **md, const char *key, char *value); /* Set the value for this key for this struct */ -MDE void moduleDelData(ModuleData **md, const char *key); /* Delete this key/value pair */ -MDE void moduleDelAllData(ModuleData **md); /* Delete all key/value pairs for this module for this struct */ -void moduleDelAllDataMod(Module *m); /* remove all module data from all structs for this module */ MDE bool moduleMinVersion(int major,int minor,int patch,int build); /* Checks if the current version of anope is before or after a given verison */ /*************************************************************************/ |