diff options
Diffstat (limited to 'src/Position.h')
-rw-r--r-- | src/Position.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Position.h b/src/Position.h new file mode 100644 index 000000000..4ef655263 --- /dev/null +++ b/src/Position.h @@ -0,0 +1,22 @@ +// Scintilla source code edit control +/** @file Position.h + ** Will define global type name Position in the Sci internal namespace. + **/ +// Copyright 2015 by Neil Hodgson <neilh@scintilla.org> +// The License.txt file describes the conditions under which this software may be distributed. + +#ifndef POSITION_H +#define POSITION_H + +namespace Sci { + +// After 3.6.0: +// typedef int Position; + +// A later version (4.x) of this file may: +//#if defined(SCI_LARGE_FILE_SUPPORT) +//typedef ptrdiff_t Position; + +} + +#endif |