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

#include "bldr.h"
VOID
DecompEnableDecompression(
IN BOOLEAN Enable
)
{
UNREFERENCED_PARAMETER(Enable);
return;
}
BOOLEAN
DecompGenerateCompressedName(
IN LPCSTR Filename,
OUT LPSTR CompressedName
)
{
UNREFERENCED_PARAMETER(Filename);
UNREFERENCED_PARAMETER(CompressedName);
//
// Indicate that the caller shouldn't bother trying to locate
// the compressed filename.
//
return(FALSE);
}
ULONG
DecompPrepareToReadCompressedFile(
IN LPCSTR Filename,
IN ULONG FileId
)
{
UNREFERENCED_PARAMETER(Filename);
UNREFERENCED_PARAMETER(FileId);
//
// No processing in osloader, only in setupldr.
// Special return code of -1 takes care of this.
//
return((ULONG)(-1));
}