diff options
Diffstat (limited to 'GnuPG/gnupgplugin.h')
-rw-r--r-- | GnuPG/gnupgplugin.h | 68 |
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__
|