mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-04 14:45:41 -04:00
9 lines
201 B
C++
9 lines
201 B
C++
#pragma once
|
|
#include "unzip.h"
|
|
|
|
namespace MinizipHelpers {
|
|
|
|
unzFile OpenUnzMemoryFile(const void* memory, size_t memory_size);
|
|
unzFile OpenUnzFile(const char* filename);
|
|
|
|
} // namespace MinizipHelpers
|