-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed x64 plugin incompatibility issue with the NPP v8.3 release.
- Loading branch information
Showing
4 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ | |
** Define the Sci_Position type used in Scintilla's external interfaces. | ||
** These need to be available to clients written in C so are not in a C++ namespace. | ||
**/ | ||
// Copyright 2015 by Neil Hodgson <[email protected]> | ||
// The License.txt file describes the conditions under which this software may be distributed. | ||
// Copyright 2015 by Neil Hodgson <[email protected]> | ||
// The License.txt file describes the conditions under which this software may be distributed. | ||
|
||
#ifndef SCI_POSITION_H | ||
#define SCI_POSITION_H | ||
|
@@ -18,12 +18,12 @@ typedef ptrdiff_t Sci_Position; | |
typedef size_t Sci_PositionU; | ||
|
||
// For Sci_CharacterRange which is defined as long to be compatible with Win32 CHARRANGE | ||
typedef long Sci_PositionCR; | ||
typedef intptr_t Sci_PositionCR; | ||
|
||
#ifdef _WIN32 | ||
#define SCI_METHOD __stdcall | ||
#define SCI_METHOD __stdcall | ||
#else | ||
#define SCI_METHOD | ||
#define SCI_METHOD | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters