mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 14:57:53 +00:00
24 lines
537 B
C
24 lines
537 B
C
|
// 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
|