-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[x64dbg] SDK and testing bundle are updated to snapshot on snapshot_2…
…016-09-18_01-22
- Loading branch information
Showing
175 changed files
with
16,940 additions
and
1,719 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.1.0.8 | ||
1.1.0.9 |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
|
||
#include "bridgemain.h" | ||
#include "_dbgfunctions.h" | ||
#include "jansson/jansson.h" | ||
|
||
#endif // BUILD_DBG | ||
|
||
|
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,31 @@ | ||
#ifndef _SCRIPTAPI_ARGUMENT_H | ||
#define _SCRIPTAPI_ARGUMENT_H | ||
|
||
#include "_scriptapi.h" | ||
|
||
namespace Script | ||
{ | ||
namespace Argument | ||
{ | ||
struct ArgumentInfo | ||
{ | ||
char mod[MAX_MODULE_SIZE]; | ||
duint rvaStart; | ||
duint rvaEnd; | ||
bool manual; | ||
duint instructioncount; | ||
}; | ||
|
||
SCRIPT_EXPORT bool Add(duint start, duint end, bool manual, duint instructionCount = 0); | ||
SCRIPT_EXPORT bool Add(const ArgumentInfo* info); | ||
SCRIPT_EXPORT bool Get(duint addr, duint* start = nullptr, duint* end = nullptr, duint* instructionCount = nullptr); | ||
SCRIPT_EXPORT bool GetInfo(duint addr, ArgumentInfo* info); | ||
SCRIPT_EXPORT bool Overlaps(duint start, duint end); | ||
SCRIPT_EXPORT bool Delete(duint address); | ||
SCRIPT_EXPORT void DeleteRange(duint start, duint end, bool deleteManual = false); | ||
SCRIPT_EXPORT void Clear(); | ||
SCRIPT_EXPORT bool GetList(ListOf(ArgumentInfo) list); //caller has the responsibility to free the list | ||
}; //Argument | ||
}; //Script | ||
|
||
#endif //_SCRIPTAPI_ARGUMENT_H |
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.