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.

34 lines
531 B

  1. #pragma once
  2. BOOL
  3. UncompressDString
  4. (
  5. LPBYTE DString,
  6. size_t DStringSize,
  7. PWSTRING UnicodeString
  8. );
  9. int
  10. UncompressUnicode
  11. (
  12. int UDFCompressedBytes,
  13. LPBYTE UDFCompressed,
  14. PWSTRING UnicodeString
  15. );
  16. int CompressUnicode
  17. (
  18. PCWCH UnicodeString,
  19. size_t UnicodeStringSize,
  20. LPBYTE UDFCompressed
  21. );
  22. VOID
  23. CompressDString
  24. (
  25. UCHAR CompressionID,
  26. PCWCH UnicodeString,
  27. size_t UnicodeStringSize,
  28. LPBYTE UDFCompressed,
  29. size_t UDFCompressedSize
  30. );