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
commite573aa23f6cf64c334633fc05918bb6515222497 (patch)
tree5fc92e98347d740ba6c3df6a728937699022b22e /win32/ScintillaWin.h
parentb6c4500a92fc089ea532600f9fac280177498799 (diff)
downloadscintilla-mirror-e573aa23f6cf64c334633fc05918bb6515222497.tar.gz
Standardise header guard names and use.
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