Merge branch 'master' of https://github.com/konsolebox/geany into konsolebox-master
[geany-mirror.git] / scintilla / src / Position.h
blob4ef6552633ae5f8ff201f6efa421d5c11f016e93
1 // Scintilla source code edit control
2 /** @file Position.h
3 ** Will define global type name Position in the Sci internal namespace.
4 **/
5 // Copyright 2015 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
8 #ifndef POSITION_H
9 #define POSITION_H
11 namespace Sci {
13 // After 3.6.0:
14 // typedef int Position;
16 // A later version (4.x) of this file may:
17 //#if defined(SCI_LARGE_FILE_SUPPORT)
18 //typedef ptrdiff_t Position;
22 #endif