123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #ifndef __SUPPORT_BASE64_H__
- #define __SUPPORT_BASE64_H__
- #include "platform/CCPlatformMacros.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- namespace cocos2d {
- int CC_DLL base64Decode(const unsigned char *in, unsigned int inLength, unsigned char **out);
-
- int CC_DLL base64Encode(const unsigned char *in, unsigned int inLength, char **out);
- }
- #ifdef __cplusplus
- }
- #endif
- #endif
|