#ifndef SLANG_ZIP_FILE_SYSTEM_H #define SLANG_ZIP_FILE_SYSTEM_H #include "slang-archive-file-system.h" #include "slang-basic.h" namespace Slang { struct ZipFileSystem { /// Create an empty zip static SlangResult create(ComPtr& out); /// True if this appears to be a zip archive static bool isArchive(const void* data, size_t size); }; } // namespace Slang #endif