cocos2d-x节点(base64.h)API

本文来自http://blog.csdn.net/runaying ,引用必须注明出处!

cocos2d-x节点(base64.h)API

温馨提醒:为了大家能更好学习,强烈推荐大家看看本人的这篇博客 Cocos2d-X权威指南笔记

解码/编码 base64的内存

///cocos2d-x-3.0alpha0/cocos2dx/support
//解码/编码 base64的内存

#ifndef __SUPPORT_BASE64_H__
#define __SUPPORT_BASE64_H__

#ifdef __cplusplus
extern "C" {
#endif    
    
namespace cocos2d {

/** @file
 base64 helper functions
 */

/** 
 *解码base64编码的内存。解码存储器预期要由调用者释放。
 *
 * @returns 输出缓冲区的长度
 *
 @since v0.8.1
 */
int base64Decode(const unsigned char *in, unsigned int inLength, unsigned char **out);
    
/**
 * 编码的字节转化成 base64终止与 '\0' 字符 
 * 编码存储器预期要由调用者释放。
 *
 * @returns 输出缓冲区的长度
 *
 @since v2.1.4
 */
int base64Encode(const unsigned char *in, unsigned int inLength, char **out);

}//namespace   cocos2d 

#ifdef __cplusplus
}
#endif    

#endif // __SUPPORT_BASE64_H__


你可能感兴趣的:(api,cocos2d,cocos2dx,cocos2d-x)