mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
ff8148dd92
Also move colorutil.cpp/h linking build fix experiment Delete a bunch of unused CMakeLists.txt files CMakeLists.txt linking fix Don't include NativeApp.h from any headers. Android.mk buildfix Half of the UWP fix Buildfix Minor project file cleanup Buildfixes Guess what? More buildfixes!
8 lines
242 B
C++
8 lines
242 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
// inflate/deflate convenience wrapper. Uses zlib.
|
|
bool compress_string(const std::string& str, std::string *dest, int compressionlevel = 9);
|
|
bool decompress_string(const std::string& str, std::string *dest);
|