diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-18 21:36:29 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-18 21:36:29 +0000 |
commit | 5142c25982c01f602268f647749957bcf63f7380 (patch) | |
tree | 77b8088067baa66a823982deb1fda5ac3158b099 /plugins/Variables/src/variables.h | |
parent | 62b1f33833883602232b40799f4ca42444e5f928 (diff) |
some resource leaks fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@9855 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Variables/src/variables.h')
-rw-r--r-- | plugins/Variables/src/variables.h | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/plugins/Variables/src/variables.h b/plugins/Variables/src/variables.h index c8184a00ec..8818f1fdc7 100644 --- a/plugins/Variables/src/variables.h +++ b/plugins/Variables/src/variables.h @@ -178,32 +178,31 @@ int getContactFromString( CONTACTSINFO* ); int initContactModule();
int deinitContactModule();
// alias
-void registerAliasTokens();
+void registerAliasTokens();
void unregisterAliasTokens();
// system
-void registerSystemTokens();
+void registerSystemTokens();
// external
-void registerExternalTokens();
+void registerExternalTokens();
// miranda
-void registerMirandaTokens();
+void registerMirandaTokens();
// str
-void registerStrTokens();
+void registerStrTokens();
// variables
-void registerVariablesTokens();
+void registerVariablesTokens();
void unregisterVariablesTokens();
-int clearVariableRegister(bool bAll);
// logic
-void registerLogicTokens();
+void registerLogicTokens();
// math
-void registerMathTokens();
+void registerMathTokens();
// metacontacts
void registerMetaContactsTokens();
// options
int OptionsInit(WPARAM wParam, LPARAM);
// reg exp
-void registerRegExpTokens();
+void registerRegExpTokens();
// inet
-void registerInetTokens();
+void registerInetTokens();
// help
INT_PTR showHelpService(WPARAM wParam, LPARAM lParam);
INT_PTR showHelpExService(WPARAM wParam, LPARAM lParam);
|