diff options
| author | Neil <nyamatongwe@gmail.com> | 2013-07-21 14:30:14 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2013-07-21 14:30:14 +1000 |
| commit | 7ab4b5ab14232d2a00246a8e6c77c73c5c8b78b7 (patch) | |
| tree | d9fa23b4d42123a37e709630255b39336c295802 /src/FontQuality.h | |
| parent | 68e4223dfcf19afec969e06727ff2fb22cf48420 (diff) | |
| download | scintilla-mirror-7ab4b5ab14232d2a00246a8e6c77c73c5c8b78b7.tar.gz | |
Standardising header guards and namespaces.
Diffstat (limited to 'src/FontQuality.h')
| -rw-r--r-- | src/FontQuality.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/FontQuality.h b/src/FontQuality.h index 45600c35e..ee9426171 100644 --- a/src/FontQuality.h +++ b/src/FontQuality.h @@ -5,6 +5,13 @@ // Copyright 1998-2009 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. +#ifndef FONTQUALITY_H +#define FONTQUALITY_H + +#ifdef SCI_NAMESPACE +namespace Scintilla { +#endif + #define SC_EFF_QUALITY_MASK 0xF #define SC_EFF_QUALITY_DEFAULT 0 #define SC_EFF_QUALITY_NON_ANTIALIASED 1 @@ -13,3 +20,9 @@ #define SCWIN_TECH_GDI 0 #define SCWIN_TECH_DIRECTWRITE 1 + +#ifdef SCI_NAMESPACE +} +#endif + +#endif |
