diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2019-04-28 18:42:05 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-30 17:18:38 -0400 |
| commit | c00ed8f4ffc4e6fca6337aecaa1acd390c71a584 (patch) | |
| tree | 0733056f5b215343d9482c247ba5085c6094b1df /src/core/file_sys/vfs_libzip.h | |
| parent | 84b605901299c9a8ea01d461109580710cabfb48 (diff) | |
vfs: Add function to extract ZIP file into virtual filesystem
Diffstat (limited to 'src/core/file_sys/vfs_libzip.h')
| -rw-r--r-- | src/core/file_sys/vfs_libzip.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/file_sys/vfs_libzip.h b/src/core/file_sys/vfs_libzip.h new file mode 100644 index 000000000..f68af576a --- /dev/null +++ b/src/core/file_sys/vfs_libzip.h @@ -0,0 +1,13 @@ +// Copyright 2019 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include "core/file_sys/vfs_types.h" + +namespace FileSys { + +VirtualDir ExtractZIP(VirtualFile zip); + +} // namespace FileSys |
