reactos/dll/win32/fmifs/compress.c
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

52 lines
846 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: File Management IFS Utility functions
* FILE: reactos/dll/win32/fmifs/compress.c
* PURPOSE: Volume compression
*
* PROGRAMMERS: Emanuele Aliberti
*/
#include "precomp.h"
/*
* @implemented
*/
BOOLEAN NTAPI
EnableVolumeCompression(
IN PWCHAR DriveRoot,
IN USHORT Compression)
{
HANDLE hFile;
DWORD RetBytes;
BOOL Ret;
hFile = CreateFileW(
DriveRoot,
FILE_READ_DATA | FILE_WRITE_DATA,
FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL,
OPEN_EXISTING,
FILE_FLAG_BACKUP_SEMANTICS,
NULL);
if (hFile == INVALID_HANDLE_VALUE)
return FALSE;
Ret = DeviceIoControl(
hFile,
FSCTL_SET_COMPRESSION,
&Compression,
sizeof(USHORT),
NULL,
0,
&RetBytes,
NULL);
CloseHandle(hFile);
return (Ret != 0);
}
/* EOF */