mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-13 00:26:35 +00:00
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
|
/*
|
||
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify it
|
||
|
* under the terms and conditions of the GNU General Public License,
|
||
|
* version 2, as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||
|
* more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
#include <stratosphere.hpp>
|
||
|
#include "htcfs_directory_service_object.hpp"
|
||
|
|
||
|
namespace ams::htcfs {
|
||
|
|
||
|
DirectoryServiceObject::DirectoryServiceObject(s32 handle) : m_handle(handle) { /* ... */ }
|
||
|
|
||
|
DirectoryServiceObject::~DirectoryServiceObject() {
|
||
|
/* TODO */
|
||
|
AMS_ABORT("htcfs::GetClient().CloseDirectory(m_handle);");
|
||
|
}
|
||
|
|
||
|
Result DirectoryServiceObject::GetEntryCount(ams::sf::Out<s64> out) {
|
||
|
AMS_ABORT("DirectoryServiceObject::GetEntryCount");
|
||
|
}
|
||
|
|
||
|
Result DirectoryServiceObject::Read(ams::sf::Out<s64> out, const ams::sf::OutMapAliasArray<fs::DirectoryEntry> &out_entries) {
|
||
|
AMS_ABORT("DirectoryServiceObject::Read");
|
||
|
}
|
||
|
|
||
|
Result DirectoryServiceObject::SetPriorityForDirectory(s32 priority) {
|
||
|
AMS_ABORT("DirectoryServiceObject::SetPriorityForDirectory");
|
||
|
}
|
||
|
|
||
|
Result DirectoryServiceObject::GetPriorityForDirectory(ams::sf::Out<s32> out) {
|
||
|
AMS_ABORT("DirectoryServiceObject::GetPriorityForDirectory");
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|