Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
38 additions
and 3 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
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
| @@ -307,4 +307,12 @@ namespace UI | ||
| return res; | ||
| } | ||
|
|
||
| bool JdiClient::JitcEnabled() | ||
| { | ||
| Json::Value* value = CallJdi("JitcEnabled"); | ||
| bool enabled = value->value.AsBool; | ||
| delete value; | ||
| return enabled; | ||
| } | ||
|
|
||
| } | ||
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
| @@ -94,6 +94,10 @@ namespace UI | ||
| void ResetPerformanceCounter(int counter); | ||
| std::string GetSystemTime(); | ||
|
|
||
| // Misc | ||
|
|
||
| bool JitcEnabled(); | ||
|
|
||
| }; | ||
|
|
||
| extern JdiClient * Jdi; | ||