aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ScintillaWin.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-02-09 14:41:36 +1100
committerNeil <nyamatongwe@gmail.com>2020-02-09 14:41:36 +1100
commit71368fa9876c672a66cadea6db89a2a6acb44dab (patch)
tree628eda2657ebb73c8c5429274994aafc33bfab3f /win32/ScintillaWin.h
parente529ca0ed34e81f40a1dbe3be4114a4e0ec267d6 (diff)
downloadscintilla-mirror-71368fa9876c672a66cadea6db89a2a6acb44dab.tar.gz
Backport: Standardise header guard names and use.
Backport of changeset 7981:098231fb9d66.
Diffstat (limited to 'win32/ScintillaWin.h')
-rw-r--r--win32/ScintillaWin.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/win32/ScintillaWin.h b/win32/ScintillaWin.h
index 6d4d2ce26..e7cfc19ff 100644
--- a/win32/ScintillaWin.h
+++ b/win32/ScintillaWin.h
@@ -5,6 +5,9 @@
// Copyright 1998-2018 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
+#ifndef SCINTILLAWIN_H
+#define SCINTILLAWIN_H
+
class ScintillaWin;
namespace Scintilla {
@@ -13,3 +16,5 @@ int ResourcesRelease(bool fromDllMain);
sptr_t DirectFunction(ScintillaWin *sci, UINT iMessage, uptr_t wParam, sptr_t lParam);
}
+
+#endif