Source code of Windows XP (NT5)
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.

18 lines
701 B

  1. // slbZip.h
  2. //
  3. // Purpose: fn prototypes for public compression/decompression routines
  4. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  5. // 1997. This computer program includes Confidential, Proprietary
  6. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  7. // use, disclosure, and/or reproduction is prohibited unless authorized
  8. // in writing. All Rights Reserved.
  9. #ifndef SLBZIP_H
  10. #define SLBZIP_H
  11. void __stdcall CompressBuffer(BYTE *pData, UINT uDataLen, BYTE **ppCompressedData, UINT * puCompressedDataLen);
  12. void __stdcall DecompressBuffer(BYTE *pData, UINT uDataLen, BYTE **ppDecompressedData, UINT * puDecompressedDataLen);
  13. #endif /* SLBZIP_H */