diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 13:15:04 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 13:15:04 +0000 |
commit | b84ab26307388f6c61d4f6d8c82c99229cd13bdd (patch) | |
tree | 916568d3430f8d424c5ec39b1d6ac9a9c35f5f04 /plugins/HistoryLinkListPlus/linklist.h | |
parent | 82dec689eb3c3d19dcc843f7d1f93b85bae79421 (diff) |
HistoryLinkListPlus:
plusified
git-svn-id: http://svn.miranda-ng.org/main/trunk@548 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryLinkListPlus/linklist.h')
-rw-r--r-- | plugins/HistoryLinkListPlus/linklist.h | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/plugins/HistoryLinkListPlus/linklist.h b/plugins/HistoryLinkListPlus/linklist.h index 4d56733a7d..17cc63e9c9 100644 --- a/plugins/HistoryLinkListPlus/linklist.h +++ b/plugins/HistoryLinkListPlus/linklist.h @@ -20,8 +20,25 @@ #ifndef _LINKLIST_H
#define _LINKLIST_H
+#define _CRT_SECURE_NO_WARNINGS
+#include <windows.h>
+#ifdef _DEBUG
+#include <crtdbg.h>
+#endif
#include <richedit.h>
+// Miranda SDK Includes
+#include <newpluginapi.h>
+#include <m_clist.h>
+#include <m_database.h>
+#include <m_utils.h>
+#include <m_langpack.h>
+#include <m_options.h>
+
+#include "resource.h"
+#include "linklist_dlg.h"
+#include "language.h"
+
// Filter Flags
#define WLL_URL 0x01
#define WLL_MAIL 0x02
@@ -129,10 +146,11 @@ typedef struct{ BYTE showType;
}LISTOPTIONS;
-BOOL WINAPI DllMain(HINSTANCE ,DWORD ,LPVOID );
-int __declspec(dllexport) Load(PLUGINLINK*);
-int __declspec(dllexport) Unload(void);
static INT_PTR LinkList_Main(WPARAM, LPARAM);
int InitOptionsDlg(WPARAM, LPARAM);
+int DBUpdate(WPARAM, LPARAM);
+int ExtractURI(DBEVENTINFO*, HANDLE, LISTELEMENT*);
+int RemoveList(LISTELEMENT*);
+int ListCount(LISTELEMENT*);
#endif //_LINKLIST_H
\ No newline at end of file |