diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-27 20:41:50 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-27 20:41:50 +0000 |
commit | 3f26a39c43faef04ea316ecc98d8d195982bb303 (patch) | |
tree | 0a584ad4f25c678838428bc53a6d6104f1b47d08 /src/modules/plugins/plugins.h | |
parent | 40814d047c86c10a10bf63ce6ba98afd22ce3a29 (diff) |
final wipeout of all interfaces
git-svn-id: http://svn.miranda-ng.org/main/trunk@659 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/plugins/plugins.h')
-rw-r--r-- | src/modules/plugins/plugins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/plugins/plugins.h b/src/modules/plugins/plugins.h index aa0251ab97..686f0e0963 100644 --- a/src/modules/plugins/plugins.h +++ b/src/modules/plugins/plugins.h @@ -9,14 +9,14 @@ #define DEFMOD_REMOVED_PROTOCOLNETLIB 22
// basic export prototypes
-typedef int (__cdecl * Miranda_Plugin_Load) (PLUGINLINK *);
+typedef int (__cdecl * Miranda_Plugin_Load) (void);
typedef int (__cdecl * Miranda_Plugin_Unload) (void);
// version control
typedef PLUGININFOEX * (__cdecl * Miranda_Plugin_InfoEx) (DWORD mirandaVersion);
// prototype for databases
typedef DATABASELINK * (__cdecl * Database_Plugin_Info) (void * reserved);
// prototype for clists
-typedef int (__cdecl * CList_Initialise) (PLUGINLINK *);
+typedef int (__cdecl * CList_Initialise) (void);
// Interface support
typedef MUUID * (__cdecl * Miranda_Plugin_Interfaces) (void);
|