-
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented "Single + Double Inf/-Inf token patching" option.
Related Issue #128 Also updated layout: GdiCharSet = 0 + background caption to filter projects by path
- Loading branch information
Showing
24 changed files
with
445 additions
and
75 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
8 changes: 8 additions & 0 deletions
8
RGiesecke.DllExport.MSBuild/RGiesecke.DllExport.MSBuild/IInputRawValues.cs
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 |
---|---|---|
@@ -1,8 +1,16 @@ | ||
| ||
//# Author of original code ([Decompiled] MIT-License): Copyright (c) 2009-2015 Robert Giesecke | ||
//# Use Readme & LICENSE files for details. | ||
|
||
//# Modifications: Copyright (c) 2016-2019 Denis Kuzmin < entry.reg@gmail.com > GitHub/3F | ||
//$ Distributed under the MIT License (MIT) | ||
|
||
namespace RGiesecke.DllExport.MSBuild | ||
{ | ||
public interface IInputRawValues: IInputValues | ||
{ | ||
long PatchesRaw { set; } | ||
|
||
int PeCheckRaw { set; } | ||
} | ||
} |
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 |
---|---|---|
|
@@ -104,6 +104,12 @@ string MetaLib | |
set; | ||
} | ||
|
||
PatchesType Patches | ||
{ | ||
get; | ||
set; | ||
} | ||
|
||
PeCheckType PeCheck | ||
{ | ||
get; | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
| ||
//# Author of original code ([Decompiled] MIT-License): Copyright (c) 2009-2015 Robert Giesecke | ||
//# Use Readme & LICENSE files for details. | ||
|
||
//# Modifications: Copyright (c) 2016-2019 Denis Kuzmin < entry.reg@gmail.com > GitHub/3F | ||
//$ Distributed under the MIT License (MIT) | ||
|
||
namespace RGiesecke.DllExport | ||
{ | ||
public enum PatchesType: long | ||
{ | ||
None, | ||
|
||
/// <summary> | ||
/// Affects ldc.r8; ldc.r4; .field; | ||
/// | ||
/// inf/-inf to 0x7F800000/0xFF800000 | ||
/// 0x7FF0000000000000/0xFFF0000000000000 | ||
/// | ||
/// https://github.com/3F/DllExport/issues/128 | ||
/// </summary> | ||
InfToken = 0x01, | ||
} | ||
} |
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
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.