reactos/reactos/drivers/filesystems/npfs_new/volume.c

34 lines
743 B
C
Raw Normal View History

/*
* PROJECT: ReactOS Drivers
* LICENSE: GPL - See COPYING in the top level directory
* FILE: drivers/filesystems/npfs/volume.c
* PURPOSE: Named pipe filesystem
* PROGRAMMERS:
*/
/* INCLUDES *****************************************************************/
#include "npfs.h"
//#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
NTSTATUS NTAPI
NpfsQueryVolumeInformation(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
FsRtlEnterFileSystem();
NpfsDbgPrint(NPFS_DL_API_TRACE, "NpfsQueryVolumeInformation()\n");
/* TODO: Implement */
IoCompleteRequest(Irp, IO_NO_INCREMENT);
FsRtlExitFileSystem();
return STATUS_SUCCESS;
}
/* EOF */