summaryrefslogtreecommitdiff
path: root/GnuPG/gnupgplugin.h
diff options
context:
space:
mode:
authormataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-11-22 18:30:08 +0000
committermataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-11-22 18:30:08 +0000
commit4101ee8ff9bc818f40dc0173b1434761f187597f (patch)
tree15ace4a23c2d13b1c4b506a54887b1ec196ee007 /GnuPG/gnupgplugin.h
parentda1c34bde32e040a0a431ffb809c3b1e425dc558 (diff)
added GnuPG
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@197 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'GnuPG/gnupgplugin.h')
-rw-r--r--GnuPG/gnupgplugin.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/GnuPG/gnupgplugin.h b/GnuPG/gnupgplugin.h
new file mode 100644
index 0000000..e27a33d
--- /dev/null
+++ b/GnuPG/gnupgplugin.h
@@ -0,0 +1,68 @@
+// stdafx.h : include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently
+//
+
+#ifndef __GNUPGPLUGIN_H__
+#define __GNUPGPLUGIN_H__
+
+// #pragma once
+
+#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
+#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
+#endif
+
+// #include <stdio.h>
+// #include <tchar.h>
+
+// TODO: reference additional headers your program requires here
+
+#include <windows.h>
+#include <windef.h>
+#include <stdio.h>
+#include <time.h>
+#include <commctrl.h>
+
+// miranda includes
+#include "newpluginapi.h"
+#include "m_system.h"
+#include "m_options.h"
+#include "m_langpack.h"
+#include "m_database.h"
+#include "m_userinfo.h"
+#include "m_protocols.h"
+#include "m_protosvc.h"
+#include "m_protomod.h"
+#include "m_clist.h"
+#include "m_message.h"
+
+#ifdef UNICODE
+ typedef LPWSTR LPTSTR;
+ typedef LPCWSTR LPCTSTR;
+#else
+ typedef LPSTR LPTSTR;
+ typedef LPCSTR LPCTSTR;
+#endif
+
+// konstanten aus den resourcen
+#include "resource.h"
+
+// gnupg plugin
+#include "size.h"
+#include "language.h"
+#include "pipeexec.h"
+#include "options.h"
+#include "userinfo.h"
+#include "main.h"
+#include "gpg.h"
+#include "tools.h"
+#include "sendrecv.h"
+#include "contactmenu.h"
+#include "passphrases.h"
+#include "passdialog.h"
+#include "keys.h"
+
+// debug macro
+#define debugout(mtext) MessageBox(NULL,(mtext),"GnuPG Plugin - Debug",MB_OK)
+
+#endif // __GNUPGPLUGIN_H__