apidecode.h

来自「base64 encode source」· C头文件 代码 · 共 21 行

H
21
字号
#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 + =
减小字号Ctrl + -
显示快捷键?