Kernel: Added stubbed code to support creation of kernel Archive objects.

This commit is contained in:
bunnei 2014-06-25 18:15:35 -04:00
parent 0cc3e85685
commit 8b8c8f4c13
6 changed files with 95 additions and 0 deletions

View file

@ -0,0 +1,23 @@
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include "common/common_types.h"
#include "core/hle/kernel/kernel.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// Kernel namespace
namespace Kernel {
/**
* Creates an archive
* @param name Optional name of archive
* @return Handle to newly created archive object
*/
Handle CreateArchive(const std::string& name="Unknown");
} // namespace FileSys