This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[x64 fix]: Scintilla structures required correction for x64
- ScNotification struct had incorrect data type 'int' for lineNumber, position, etc fields - This might cause misinterpretation of data block eventually leading to corruption. - Scintilla interface method signatures were incorrectly using int. - This would cause truncation of data in x64 environment and possible data corruption. - Enums in GatewayDomain.cs required [Flags] attribute to combine using OR.
- Loading branch information
Showing
7 changed files
with
669 additions
and
599 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,3 +109,4 @@ UpgradeLog*.XML | |
*.pyc | ||
|
||
Visual Studio Project Template C#/$projectname$.sln | ||
.vscode/launch.json |
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
Oops, something went wrong.