From 2cca7438620e9bdbbbca5111928557417769acb7 Mon Sep 17 00:00:00 2001 From: Puck Meerburg Date: Sat, 25 Oct 2014 14:07:38 +0000 Subject: [PATCH] Add strings.h to each file using strcasecmp, and change format into <*.h> --- Languages/Sources/HtmlCssJsPhp_Language.cpp | 5 +++-- Languages/Sources/HtmlCssJsPhp_Popup.cpp | 1 + Languages/Sources/HtmlJs_Language.cpp | 2 ++ Languages/Sources/HtmlJs_Popup.cpp | 1 + Languages/Sources/Html_Popup.cpp | 1 + Languages/Sources/Lua_Popup.cpp | 1 + Languages/Sources/Pascal_Popup.cpp | 1 + Sources/pe.h | 13 +++++++------ rez/Sources/SymbolTable.cpp | 1 + 9 files changed, 18 insertions(+), 8 deletions(-) diff --git a/Languages/Sources/HtmlCssJsPhp_Language.cpp b/Languages/Sources/HtmlCssJsPhp_Language.cpp index 1c8977d..2181fe0 100644 --- a/Languages/Sources/HtmlCssJsPhp_Language.cpp +++ b/Languages/Sources/HtmlCssJsPhp_Language.cpp @@ -33,8 +33,9 @@ Created: 12/07/97 22:01:11 by Maarten Hekkelman */ -#include -#include +#include +#include +#include #include #include "CLanguageAddOn.h" #include "HColorUtils.h" diff --git a/Languages/Sources/HtmlCssJsPhp_Popup.cpp b/Languages/Sources/HtmlCssJsPhp_Popup.cpp index 83b4610..f325244 100644 --- a/Languages/Sources/HtmlCssJsPhp_Popup.cpp +++ b/Languages/Sources/HtmlCssJsPhp_Popup.cpp @@ -39,6 +39,7 @@ */ #include #include +#include #include #include "CLanguageAddOn.h" diff --git a/Languages/Sources/HtmlJs_Language.cpp b/Languages/Sources/HtmlJs_Language.cpp index 7a4a42b..161863a 100644 --- a/Languages/Sources/HtmlJs_Language.cpp +++ b/Languages/Sources/HtmlJs_Language.cpp @@ -36,6 +36,8 @@ #include "CLanguageAddOn.h" #include "HColorUtils.h" +#include + _EXPORT const char kLanguageName[] = "HTML-JS"; _EXPORT const char kLanguageExtensions[] = "html;htm"; _EXPORT const char kLanguageCommentStart[] = " +#include const long kMaxNameSize = 256; diff --git a/Languages/Sources/Html_Popup.cpp b/Languages/Sources/Html_Popup.cpp index 6ca71aa..2a17116 100644 --- a/Languages/Sources/Html_Popup.cpp +++ b/Languages/Sources/Html_Popup.cpp @@ -35,6 +35,7 @@ #include "CLanguageAddOn.h" #include +#include const long kMaxNameSize = 256; diff --git a/Languages/Sources/Lua_Popup.cpp b/Languages/Sources/Lua_Popup.cpp index 6dbaaca..319489d 100644 --- a/Languages/Sources/Lua_Popup.cpp +++ b/Languages/Sources/Lua_Popup.cpp @@ -1,5 +1,6 @@ #include #include +#include #include #include "CLanguageAddOn.h" diff --git a/Languages/Sources/Pascal_Popup.cpp b/Languages/Sources/Pascal_Popup.cpp index ef20511..c3d5f02 100644 --- a/Languages/Sources/Pascal_Popup.cpp +++ b/Languages/Sources/Pascal_Popup.cpp @@ -36,6 +36,7 @@ */ #include "CLanguageAddOn.h" +#include const int kMaxNameSize = 256; diff --git a/Sources/pe.h b/Sources/pe.h index 22a9492..f0d8044 100644 --- a/Sources/pe.h +++ b/Sources/pe.h @@ -88,13 +88,14 @@ #include -#include -#include -#include +#include +#include +#include +#include -#include -#include -#include +#include +#include +#include #include #include diff --git a/rez/Sources/SymbolTable.cpp b/rez/Sources/SymbolTable.cpp index abcc40c..3bed13a 100644 --- a/rez/Sources/SymbolTable.cpp +++ b/rez/Sources/SymbolTable.cpp @@ -35,6 +35,7 @@ #include "SymbolTable.h" #include +#include struct Node { Node *left, *right;