⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 apidecode.h

📁 base64 encode source
💻 H
字号:
#ifndef _API_DECODE_H
#define _API_DECODE_H

#include "string.h"	/* strlen declaim	*/

/* Type defination	*/
typedef unsigned char	BYTE;
typedef	unsigned long	DWORD;
typedef BYTE			BOOL;

/* Const defination	*/
#ifndef FAILURE
#define FAILURE		0x00
#define SUCCESS		(!FAILURE)
#endif

/* function declaim	*/
extern BOOL API_Decode_Base64( BYTE *pInText , DWORD InLen , BYTE *pOutText , DWORD *UsedBufLen );


#endif		/* _API_DECODE_H	*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -