diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-02-18 13:55:55 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-02-18 13:55:55 +0000 |
commit | a81202e45d9f67032e4c230ce1e3a46270c3a1db (patch) | |
tree | 015c087e84d289248247f6c1756017bcb76b16a0 /plugins/DropBox/src/common.h | |
parent | 51ae9808067b2be06568d10214bee8a60c1160c0 (diff) |
- initial commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@8161 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DropBox/src/common.h')
-rw-r--r-- | plugins/DropBox/src/common.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/DropBox/src/common.h b/plugins/DropBox/src/common.h new file mode 100644 index 0000000000..64d4e4cab6 --- /dev/null +++ b/plugins/DropBox/src/common.h @@ -0,0 +1,31 @@ +#ifndef _COMMON_H_
+#define _COMMON_H_
+
+//#include <winsock2.h>
+#include <windows.h>
+#include <time.h>
+
+#include <newpluginapi.h>
+
+#include <m_options.h>
+#include <m_database.h>
+
+#include <m_protoint.h>
+#include <m_protomod.h>
+#include <m_protosvc.h>
+
+#include <m_netlib.h>
+
+#include <m_json.h>
+#include <m_langpack.h>
+#include <m_string.h>
+
+#include "version.h"
+#include "..\res\resource.h"
+
+#define MODULE "DropBox"
+
+extern HINSTANCE g_hInstance;
+extern HANDLE g_hNetlibUser;
+
+#endif //_COMMON_H_
\ No newline at end of file |