Filter non-executable files out of the game list.
This commit is contained in:
parent
4bc22aa350
commit
5cf684c951
4 changed files with 26 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue