📄 encode.h
字号:
/*****************************************************************************************
* encode.h
*
* jiangle 2004/05
*
* header of encode.c
*
*achieve encode and decode convolution
******************************************************************************************/
#ifndef _ENCODE_H
#define _ENCODE_H
#include <windows.h>
#include <stdio.h>
int encode(PBYTE inBuf,PBYTE outBuf,int count);
//inBuf: 待编码数据
//outBuf: 编码得到数据
//count: 待编码数据的字节数(每字节8bit)
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -