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.
20 lines
319 B
20 lines
319 B
/*++
|
|
|
|
Copyright (c) 1997-1999 Microsoft Corporation
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _LGCOMP_H
|
|
#define _LGCOMP_H
|
|
|
|
#include <minidrv.h>
|
|
|
|
#define COMP_NONE 0
|
|
#define COMP_RLE 1
|
|
#define COMP_MHE 2
|
|
|
|
extern INT LGCompMHE(PBYTE, PBYTE, DWORD, INT);
|
|
extern INT LGCompRLE(PBYTE, PBYTE, DWORD, INT);
|
|
|
|
#endif // _LGCOMP_H
|