Chunk is now marked as dirty; saving only dirty chunks; rewritten load / save not to use cChunkPtr; set VC2008 project to level4 warnings; block entities are now loaded and saved properly
git-svn-id: http://mc-server.googlecode.com/svn/trunk@273 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
17
source/StringCompression.h
Normal file
17
source/StringCompression.h
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
// StringCompression.h
|
||||
|
||||
// Interfaces to the wrapping functions for compression and decompression using AString as their data
|
||||
|
||||
|
||||
|
||||
|
||||
/// Compresses a_Data into a_Compressed; return Z_XXX error constants same as zlib's compress2()
|
||||
extern int CompressString(const char * a_Data, int a_Length, AString & a_Compressed);
|
||||
|
||||
/// Uncompresses a_Data into a_Decompressed; returns Z_XXX error constants same as zlib's decompress()
|
||||
extern int UncompressString(const char * a_Data, int a_Length, AString & a_Uncompressed, int a_UncompressedSize);
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user