mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 01:17:59 -05:00
Kernel: Added stubbed code to support creation of kernel Archive objects.
This commit is contained in:
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
|
Reference in New Issue
Block a user