Filter non-executable files out of the game list.

This commit is contained in:
Steveice10 2019-09-07 01:52:18 -07:00
parent 4bc22aa350
commit 5cf684c951
4 changed files with 26 additions and 0 deletions

View file

@ -112,6 +112,16 @@ public:
return std::make_pair(2, ResultStatus::Success);
}
/**
* Get whether this application is executable.
* @param out_executable Reference to store the executable flag into.
* @return ResultStatus result of function
*/
virtual ResultStatus IsExecutable(bool& out_executable) {
out_executable = true;
return ResultStatus::Success;
}
/**
* Get the code (typically .code section) of the application
* @param buffer Reference to buffer to store data