mirror of
https://github.com/glest/glest-source.git
synced 2025-09-28 08:29:00 +02:00
Fixed the god-awful indentation
This commit is contained in:
@@ -16,13 +16,15 @@
|
||||
|
||||
using std::string;
|
||||
|
||||
namespace Shared{ namespace CompressionUtil{
|
||||
namespace Shared {
|
||||
namespace CompressionUtil {
|
||||
|
||||
bool compressFileToZIPFile(string inFile, string outFile, int compressionLevel=5);
|
||||
bool extractFileFromZIPFile(string inFile, string outFile);
|
||||
std::pair<unsigned char *,unsigned long> compressMemoryToMemory(unsigned char *input, unsigned long input_len, int compressionLevel=5);
|
||||
std::pair<unsigned char *,unsigned long> extractMemoryToMemory(unsigned char *input, unsigned long input_len, unsigned long max_output_len);
|
||||
bool compressFileToZIPFile(string inFile, string outFile, int compressionLevel = 5);
|
||||
bool extractFileFromZIPFile(string inFile, string outFile);
|
||||
std::pair<unsigned char *, unsigned long> compressMemoryToMemory(unsigned char *input, unsigned long input_len, int compressionLevel = 5);
|
||||
std::pair<unsigned char *, unsigned long> extractMemoryToMemory(unsigned char *input, unsigned long input_len, unsigned long max_output_len);
|
||||
|
||||
}};
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user