summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/archive.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/archive.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/kernel/archive.h b/src/core/hle/kernel/archive.h
new file mode 100644
index 000000000..98670f06c
--- /dev/null
+++ b/src/core/hle/kernel/archive.h
@@ -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