mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 20:48:03 -05:00
FileSys/Kernel: Implement SetSize service call for File objects.
This commit is contained in:
@ -44,6 +44,13 @@ public:
|
||||
*/
|
||||
size_t GetSize() const override;
|
||||
|
||||
/**
|
||||
* Set the size of the file in bytes
|
||||
* @param size New size of the file
|
||||
* @return true if successful
|
||||
*/
|
||||
bool SetSize(const u64 size) const override;
|
||||
|
||||
/**
|
||||
* Close the file
|
||||
* @return true if the file closed correctly
|
||||
|
Reference in New Issue
Block a user