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

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
This commit is contained in:
rburchell
2008-11-15 17:56:39 +00:00
parent b2b0e1d235
commit 8784fa995e
11 changed files with 0 additions and 268 deletions
-1
View File
@@ -715,7 +715,6 @@ E int str_is_cidr(char *str, uint32 * ip, uint32 * mask, char **host);
/**** modules.c ****/
E void modules_unload_all(bool fini, bool unload_proto); /* Read warnings near function source */
E void moduleCleanStruct(ModuleData **moduleData);
E void ModuleDatabaseBackup(const char *dbname);
E void ModuleRemoveBackups(const char *dbname);
-5
View File
@@ -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 */
/*************************************************************************/
-16
View File
@@ -391,7 +391,6 @@ typedef struct server_ Server;
typedef struct channel_ Channel;
typedef struct c_elist EList;
typedef struct c_elist_entry Entry;
typedef struct ModuleData_ ModuleData; /* ModuleData struct */
typedef struct memo_ Memo;
typedef struct badword_ BadWord;
typedef struct bandata_ BanData;
@@ -581,20 +580,6 @@ typedef struct {
/*************************************************************************/
/**
* ModuleData strucs used to allow modules to add / delete module Data from existing structs
*/
struct ModuleData_ {
char *moduleName; /* Which module we belong to */
char *key; /* The key */
char *value; /* The Value */
ModuleData *next; /* The next ModuleData record */
};
/*************************************************************************/
/* Memo info structures. Since both nicknames and channels can have memos,
* we encapsulate memo data in a MemoList to make it easier to handle. */
@@ -604,7 +589,6 @@ struct memo_ {
time_t time; /* When it was sent */
char sender[NICKMAX];
char *text;
ModuleData *moduleData; /* Module saved data attached to the Memo */
#ifdef USE_MYSQL
uint32 id; /* Database ID; see mysql.c */
#endif
-2
View File
@@ -44,8 +44,6 @@ class User : public Extensible
NickAlias *na;
ModuleData *moduleData; /* defined for it, it should allow the module Add/Get */
int isSuperAdmin; /* is SuperAdmin on or off? */
struct u_chanlist *chans; /* Channels user has joined */