summaryrefslogtreecommitdiff
path: root/include/newpluginapi.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-27 13:58:25 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-27 13:58:25 +0000
commit81e8caf42867b65677efe2bffaa52ecff7303c3a (patch)
tree846f06ef51787c58205cd87546976bda29556680 /include/newpluginapi.h
parentd9da7f147fbe91d2e70721de96907ae1d273b591 (diff)
no more pluginLink in load()
git-svn-id: http://svn.miranda-ng.org/main/trunk@652 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/newpluginapi.h')
-rw-r--r--include/newpluginapi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/newpluginapi.h b/include/newpluginapi.h
index c539b9222b..e27855e34b 100644
--- a/include/newpluginapi.h
+++ b/include/newpluginapi.h
@@ -220,12 +220,12 @@ typedef struct {
which is a PLUGINLINK structure
Returns: 0 on success, nonzero on failure
*/
- int (*Load) (char * profile, void * link);
+ int (*Load) (char * profile);
/*
Affect: The database plugin should shutdown, unloading things from the core and freeing internal structures
Returns: 0 on success, nonzero on failure
- Note: Unload() might be called even if Load() was never called, wasLoaded is set to 1 if Load() was ever called.
+ Note: Unload() might be called even if Load(void) was never called, wasLoaded is set to 1 if Load(void) was ever called.
*/
int (*Unload) (int wasLoaded);