Filter non-executable files out of the game list.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user