rawfs.c (c2c66aff) rawfs.c (75850abc)
1/*
2* PROJECT: ReactOS Kernel
3* LICENSE: GPL - See COPYING in the top level directory
4* FILE: ntoskrnl/io/iomgr/rawfs.c
5* PURPOSE: Raw File System Driver
6* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7*/
8

--- 819 unchanged lines hidden (view full) ---

828 if (FlagOn(RealDevice->Characteristics, FILE_FLOPPY_DISKETTE))
829 {
830 /* Floppies don't have partitions */
831 DiskHasPartitions = FALSE;
832 }
833 else
834 {
835 /* Setup query IRP */
1/*
2* PROJECT: ReactOS Kernel
3* LICENSE: GPL - See COPYING in the top level directory
4* FILE: ntoskrnl/io/iomgr/rawfs.c
5* PURPOSE: Raw File System Driver
6* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7*/
8

--- 819 unchanged lines hidden (view full) ---

828 if (FlagOn(RealDevice->Characteristics, FILE_FLOPPY_DISKETTE))
829 {
830 /* Floppies don't have partitions */
831 DiskHasPartitions = FALSE;
832 }
833 else
834 {
835 /* Setup query IRP */
836 KeResetEvent(&Event);
836 KeClearEvent(&Event);
837 Irp = IoBuildDeviceIoControlRequest(IOCTL_DISK_GET_PARTITION_INFO,
838 RealDevice,
839 NULL,
840 0,
841 &PartitionInformation,
842 sizeof(PARTITION_INFORMATION),
843 FALSE,
844 &Event,

--- 432 unchanged lines hidden ---
837 Irp = IoBuildDeviceIoControlRequest(IOCTL_DISK_GET_PARTITION_INFO,
838 RealDevice,
839 NULL,
840 0,
841 &PartitionInformation,
842 sizeof(PARTITION_INFORMATION),
843 FALSE,
844 &Event,

--- 432 unchanged lines hidden ---