45 lines
860 B
C
45 lines
860 B
C
|
/*++
|
||
|
|
||
|
Copyright (C) 1994-2001 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
MRCICODE.H
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
MRCI 1 & MRCI 2 maxcompress and decompress functions
|
||
|
|
||
|
History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifdef BIT16
|
||
|
#define FAR _far
|
||
|
#else
|
||
|
#ifndef FAR
|
||
|
#define FAR
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
extern unsigned Mrci1MaxCompress(unsigned char FAR *pchbase,unsigned cchunc,
|
||
|
unsigned char FAR *pchcmpBase,unsigned cchcmpMax);
|
||
|
|
||
|
extern unsigned Mrci1Decompress(unsigned char FAR *pchin,unsigned cchin,
|
||
|
unsigned char FAR *pchdecBase,unsigned cchdecMax);
|
||
|
|
||
|
extern unsigned Mrci2MaxCompress(unsigned char FAR *pchbase,unsigned cchunc,
|
||
|
unsigned char FAR *pchcmpBase,unsigned cchcmpMax);
|
||
|
|
||
|
extern unsigned Mrci2Decompress(unsigned char FAR *pchin,unsigned cchin,
|
||
|
unsigned char FAR *pchdecBase,unsigned cchdecMax);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|