// 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 // #include // TODO: reference additional headers your program requires here #include #include #include #include #include // 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__