blob: e27a33db4440cea330273dd72733a86b02cd293f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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__
|