?? rle.h
字號:
#if !defined(RLE_H)
#define RLE_H
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef __cplusplus
extern "C"
{
#endif
//Run Length 編碼/解碼函數(shù)集
DWORD RunLength(BYTE *pInput,DWORD dwCount);
DWORD RunLengthEncode(BYTE *pInput,DWORD dwCount,BYTE *pOutput);
DWORD RunLengthDecode(BYTE *pInput,BYTE *pOutput);
#ifdef __cplusplus
}
#endif
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -