You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
456 B
21 lines
456 B
//----------------------------------------------------------------------
|
|
// FILE NAME : FUMH.h
|
|
// FUNCTION : MH Compress
|
|
// AUTHER : 1996.08.08 FPL)Y.YUTANI
|
|
// NOTE : for Windows NT V4.0
|
|
//----------------------------------------------------------------------
|
|
#ifndef fumh_h
|
|
#define fumh_h
|
|
|
|
DWORD MhCompress(
|
|
BYTE *pDest,
|
|
DWORD cDestN,
|
|
BYTE *pSrc,
|
|
DWORD cSrcN,
|
|
DWORD cSrcX,
|
|
DWORD cSrcY
|
|
);
|
|
|
|
#endif // !fumh_h
|
|
|
|
// end of FUMH.h
|