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.

23 lines
355 B

  1. #ifndef _BASECSP_COMPRESS_H_
  2. #define _BASECSP_COMPRESS_H_
  3. #include <windows.h>
  4. DWORD
  5. WINAPI
  6. CompressData(
  7. IN DWORD cbIn,
  8. IN PBYTE pbIn,
  9. OUT PDWORD pcbOut,
  10. OUT PBYTE pbOut);
  11. DWORD
  12. WINAPI
  13. UncompressData(
  14. IN DWORD cbIn,
  15. IN PBYTE pbIn,
  16. OUT PDWORD pcbOut,
  17. OUT PBYTE pbOut);
  18. #endif