diff options
Diffstat (limited to 'scintilla/scripts')
-rw-r--r-- | scintilla/scripts/HeaderCheck.py | 3 | ||||
-rw-r--r-- | scintilla/scripts/HeaderOrder.txt | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/scintilla/scripts/HeaderCheck.py b/scintilla/scripts/HeaderCheck.py index 6916fe3..e36ffa1 100644 --- a/scintilla/scripts/HeaderCheck.py +++ b/scintilla/scripts/HeaderCheck.py @@ -32,7 +32,8 @@ def ExtractHeaders(filename): def CheckFiles(root): # Find all the lexer source code files - filePaths = glob.glob(root + "/src/*.cxx") + filePaths = glob.glob(root + "/include/*.h") + filePaths += glob.glob(root + "/src/*.cxx") SortListInsensitive(filePaths) filePaths += glob.glob(root + "/lexlib/*.cxx") filePaths += glob.glob(root + "/lexers/*.cxx") diff --git a/scintilla/scripts/HeaderOrder.txt b/scintilla/scripts/HeaderOrder.txt index fdbb3a1..98efd30 100644 --- a/scintilla/scripts/HeaderOrder.txt +++ b/scintilla/scripts/HeaderOrder.txt @@ -5,6 +5,7 @@ // C standard library #include <stddef.h> #include <stdlib.h> +#include <stdint.h> #include <string.h> #include <stdio.h> #include <stdarg.h> @@ -70,6 +71,7 @@ // include #include "Platform.h" +#include "Sci_Position.h" #include "ILexer.h" #include "Scintilla.h" #include "ScintillaWidget.h" |