diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-19 00:22:46 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-19 00:22:46 +0000 |
commit | 23f5e9de79047b448282d6984db3f12511b751eb (patch) | |
tree | 81f30ef738acc2c2f12f6e7327f729e20d9d39e1 /include/modules.h | |
parent | 6c1d764c4ff6901456b9df55727d7e80d0aa76c8 (diff) |
Move last of events that are in the core distro over to newevents.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2115 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/modules.h b/include/modules.h index 51ffea816..3af5f3bd9 100644 --- a/include/modules.h +++ b/include/modules.h @@ -522,6 +522,11 @@ class CoreExport Module * XXX. */ virtual void OnSaveDatabase() MARK_DEPRECATED { } + + /** Called when anope backs up databases. + * NOTE: This event is deprecated pending new database handling. + */ + virtual void OnBackupDatabase() MARK_DEPRECATED { } }; @@ -530,7 +535,7 @@ class CoreExport Module enum Implementation { I_BEGIN, - I_OnUserKicked, I_OnReload, I_OnBotAssign, I_OnBotUnAssign, I_OnSaveDatabase, I_OnUserConnect, + I_OnUserKicked, I_OnReload, I_OnBotAssign, I_OnBotUnAssign, I_OnSaveDatabase, I_OnUserConnect, I_OnBackupDatabase, I_END }; |