Kernel: Added stubbed code to support creation of kernel Archive objects.
This commit is contained in:
parent
0cc3e85685
commit
8b8c8f4c13
6 changed files with 95 additions and 0 deletions
23
src/core/hle/kernel/archive.h
Normal file
23
src/core/hle/kernel/archive.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue