mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-21 02:28:21 -05:00
add param names to the correct place this time!
Some checks are pending
Build Binaries / Build Windows (push) Waiting to run
Build Binaries / Build macOS (push) Waiting to run
Build Binaries / Build Android (64-bit) (push) Waiting to run
Build Binaries / Build Android (32-bit) (push) Waiting to run
Build Binaries / Publish (push) Blocked by required conditions
Check CHANGELOG.md / Check CHANGELOG.md (push) Waiting to run
Some checks are pending
Build Binaries / Build Windows (push) Waiting to run
Build Binaries / Build macOS (push) Waiting to run
Build Binaries / Build Android (64-bit) (push) Waiting to run
Build Binaries / Build Android (32-bit) (push) Waiting to run
Build Binaries / Publish (push) Blocked by required conditions
Check CHANGELOG.md / Check CHANGELOG.md (push) Waiting to run
This commit is contained in:
parent
ed97f3b040
commit
df24b24c44
1 changed files with 5 additions and 5 deletions
|
@ -155,12 +155,12 @@ namespace cocos2d
|
|||
static gd::string base64EncodeEnc(gd::string const&, gd::string);
|
||||
static gd::string base64URLDecode(gd::string const&);
|
||||
static gd::string base64URLEncode(gd::string const&);
|
||||
static int ccDeflateMemory(unsigned char*, unsigned int, unsigned char**);
|
||||
static int ccDeflateMemory(unsigned char* data, unsigned int size, unsigned char** out);
|
||||
static int ccDeflateMemoryWithHint(unsigned char*, unsigned int, unsigned char**, unsigned int);
|
||||
static gd::string compressString(gd::string const&, bool, int);
|
||||
static gd::string decompressString(gd::string const&, bool, int);
|
||||
static gd::string decompressString2(unsigned char*, bool, int, int);
|
||||
static gd::string encryptDecrypt(gd::string const&, int);
|
||||
static gd::string compressString(gd::string const& data, bool encrypt, int encryptionKey);
|
||||
static gd::string decompressString(gd::string const& data, bool encrypt, int encryptionKey);
|
||||
static gd::string decompressString2(unsigned char* data, bool encrypt, int size, int encryptionKey);
|
||||
static gd::string encryptDecrypt(gd::string const& data, int encryptionKey);
|
||||
static gd::string encryptDecryptWKey(gd::string const&, gd::string);
|
||||
static unsigned char hexToChar(const gd::string&);
|
||||
static gd::string urlDecode(const gd::string&);
|
||||
|
|
Loading…
Reference in a new issue