-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStdAfx.h
executable file
·97 lines (83 loc) · 2.43 KB
/
StdAfx.h
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#if !defined(AFX_STDAFX_H__FC742DCA_6BAE_4F0E_8EB5_A455A0655ABB__INCLUDED_)
#define AFX_STDAFX_H__FC742DCA_6BAE_4F0E_8EB5_A455A0655ABB__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Insert your headers here
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define _WIN32_WINNT 0x0400
#define _WIN32_WINDOWS 0x0401 // only support Windows 98 if we were to do 9x
#define _WIN32_IE 0x0500 // uses some commctrl extensions for propsheet/dialog
#include <windows.h>
#include <commctrl.h>
#include <commdlg.h>
#include <shlwapi.h>
#include <shellapi.h>
#include <shlobj.h>
#include <wincrypt.h>
#include <shobjidl.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <wchar.h>
#include <stdarg.h>
// STL
/* i love C++! STL templates spew "truncated name" warnings. only relevant for debugging... */
#pragma warning(disable: 4786)
#include <string>
#include <set>
#if _DEBUG
#include <crtdbg.h>
#endif
// SCC (with compat stubs for VS6)
#define _Inout_opt_
#define _In_opt_z_
#define _In_
#define _In_z_
#define _Deref_out_
#define _Out_z_cap_(x)
#define _Out_
#define _Inout_
#define _Inout_z_
#define _In_count_(x)
#define _In_opt_
#define _Inout_cap_(x)
#define _Out_cap_(x)
#define _Deref_opt_out_opt_
#include "scc_1_3.h"
// libgit2
#include <git2/global.h>
#include <git2/repository.h>
#include <git2/errors.h>
#include <git2/status.h>
#include <git2/checkout.h>
#include <git2/index.h>
#include <git2/signature.h>
#include <git2/commit.h>
#include <git2/revparse.h>
#include <git2/message.h>
#include <git2/buffer.h>
#include <git2/pathspec.h>
#include <git2/revwalk.h>
#include <git2/oid.h>
#include <git2/clone.h>
#include <git2/branch.h>
#include <git2/merge.h>
#include <git2/config.h>
#include <git2/revert.h>
#include <git2/reset.h>
#include <git2/tag.h>
#include <git2/graph.h>
#include <git2/apply.h>
#include <git2/cherrypick.h>
// our own stuff, after the prereqs
#include "resource.h"
#include "LGit.h"
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_STDAFX_H__FC742DCA_6BAE_4F0E_8EB5_A455A0655ABB__INCLUDED_)