-
Notifications
You must be signed in to change notification settings - Fork 0
/
HeaderOrder.txt
143 lines (118 loc) · 2.73 KB
/
HeaderOrder.txt
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// Define the standard order in which to include header files
// All platform headers should be included before Scintilla headers
// and each of these groups are then divided into directory groups.
// Based on Scintilla's HeaderOrder.txt and compatible with it.
// Base of the repository relative to this file
//base:..
// File patterns to check:
//source:**/*.h
//source:**/*.cxx
// Exclude lua implementation as it is an external project that follows different rules
//exclude:lua
// C++ wrappers of C standard library
#include <cstddef>
#include <cstdlib>
#include <cstdint>
#include <cassert>
#include <cstring>
#include <cstdio>
#include <cstdarg>
#include <ctime>
#include <cmath>
#include <clocale>
#include <cerrno>
#include <csignal>
// C++ standard library
#include <stdexcept>
#include <tuple>
#include <string>
#include <string_view>
#include <vector>
#include <deque>
#include <map>
#include <set>
#include <optional>
#include <algorithm>
#include <iterator>
#include <functional>
#include <memory>
#include <chrono>
#include <sstream>
#include <iomanip>
#include <atomic>
#include <mutex>
#include <thread>
// POSIX
// Also on Windows
#include <fcntl.h>
#include <unistd.h>
#include <dirent.h>
// Also on Windows
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
// GTK headers
#include <glib.h>
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
// Windows headers
#include <io.h>
#include <windows.h>
#include <commctrl.h>
#include <richedit.h>
#include <windowsx.h>
#include <uxtheme.h>
#include <vsstyle.h>
#include <vssym32.h>
#include <shlwapi.h>
#include <shlobj.h>
#include <direct.h>
// Scintilla headers
// Non-platform-specific headers
// include
#include "ILoader.h"
#include "ILexer.h"
#include "ScintillaTypes.h"
#include "ScintillaMessages.h"
#include "ScintillaCall.h"
#include "Scintilla.h"
#include "ScintillaWidget.h"
#include "SciLexer.h"
#include "Lexilla.h"
#include "LexillaAccess.h"
// SciTE headers
#include "GUI.h"
#include "ScintillaWindow.h"
#include "StringList.h"
#include "StringHelpers.h"
#include "FilePath.h"
#include "StyleDefinition.h"
#include "PropSetFile.h"
#include "StyleWriter.h"
#include "Extender.h"
#include "SciTE.h"
#include "JobQueue.h"
#include "pixmapsGNOME.h"
#include "SciIcon.h"
#include "Widget.h"
#include "Cookie.h"
#include "Worker.h"
#include "FileWorker.h"
#include "MatchMarker.h"
#include "EditorConfig.h"
#include "SciTEBase.h"
#include "UniqueInstance.h"
#include "StripDefinition.h"
#include "Strips.h"
#include "Utf8_16.h"
#include "IFaceTable.h"
#include "SciTEKeys.h"
#include "SciTEWin.h"
#include "DLLFunction.h"
#include "MultiplexExtension.h"
#include "DirectorExtension.h"
#include "LuaExtension.h"
// Lua headers
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"