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.

46 lines
769 B

  1. #include "bldr.h"
  2. VOID
  3. DecompEnableDecompression(
  4. IN BOOLEAN Enable
  5. )
  6. {
  7. UNREFERENCED_PARAMETER(Enable);
  8. return;
  9. }
  10. BOOLEAN
  11. DecompGenerateCompressedName(
  12. IN LPCSTR Filename,
  13. OUT LPSTR CompressedName
  14. )
  15. {
  16. UNREFERENCED_PARAMETER(Filename);
  17. UNREFERENCED_PARAMETER(CompressedName);
  18. //
  19. // Indicate that the caller shouldn't bother trying to locate
  20. // the compressed filename.
  21. //
  22. return(FALSE);
  23. }
  24. ULONG
  25. DecompPrepareToReadCompressedFile(
  26. IN LPCSTR Filename,
  27. IN ULONG FileId
  28. )
  29. {
  30. UNREFERENCED_PARAMETER(Filename);
  31. UNREFERENCED_PARAMETER(FileId);
  32. //
  33. // No processing in osloader, only in setupldr.
  34. // Special return code of -1 takes care of this.
  35. //
  36. return((ULONG)(-1));
  37. }