Leaked source code of windows server 2003
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.

38 lines
916 B

  1. /*
  2. * Microsoft Confidential
  3. * Copyright (c) 1994 Microsoft Corporation
  4. * All Rights Reserved.
  5. *
  6. * MRCICODE.H
  7. *
  8. * MRCI 1 & MRCI 2 maxcompress and decompress functions
  9. */
  10. #ifndef FAR
  11. #ifdef BIT16
  12. #define FAR _far
  13. #else
  14. #define FAR
  15. #endif
  16. #endif
  17. #ifdef __cplusplus
  18. extern "C"
  19. {
  20. #endif
  21. extern unsigned Mrci1MaxCompress(unsigned char FAR *pchbase,unsigned cchunc,
  22. unsigned char FAR *pchcmpBase,unsigned cchcmpMax);
  23. extern unsigned Mrci1Decompress(unsigned char FAR *pchin,unsigned cchin,
  24. unsigned char FAR *pchdecBase,unsigned cchdecMax);
  25. extern unsigned Mrci2MaxCompress(unsigned char FAR *pchbase,unsigned cchunc,
  26. unsigned char FAR *pchcmpBase,unsigned cchcmpMax);
  27. extern unsigned Mrci2Decompress(unsigned char FAR *pchin,unsigned cchin,
  28. unsigned char FAR *pchdecBase,unsigned cchdecMax);
  29. #ifdef __cplusplus
  30. }
  31. #endif