Lots of changes to the kernel
[reactos.git] / reactos / drivers / fs / ext2 / quota.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: services/fs/ext2/quota.c
5 * PURPOSE: Quota support
6 * PROGRAMMER: David Welch (welch@mcmail.com)
7 * UPDATE HISTORY:
8 */
9
10 /* INCLUDES *****************************************************************/
11
12 #include <ddk/ntddk.h>
13 #include <wchar.h>
14 #include <internal/string.h>
15
16 //#define NDEBUG
17 #include <internal/debug.h>
18
19 #include "ext2fs.h"
20
21 /* FUNCTIONS ****************************************************************/
22
23 NTSTATUS Ext2QueryQuota(PDEVICE_OBJECT DeviceObject, PIRP Irp)
24 {
25 NTSTATUS Status;
26
27 Status = STATUS_NOT_IMPLEMENTED;
28
29 Irp->IoStatus.Status = Status;
30 Irp->IoStatus.Information = 0;
31
32 IoCompleteRequest(Irp, IO_NO_INCREMENT);
33 return(Status);
34 }
35
36 NTSTATUS Ext2SetQuota(PDEVICE_OBJECT DeviceObject, PIRP Irp)
37 {
38 NTSTATUS Status;
39
40 Status = STATUS_NOT_IMPLEMENTED;
41
42 Irp->IoStatus.Status = Status;
43 Irp->IoStatus.Information = 0;
44
45 IoCompleteRequest(Irp, IO_NO_INCREMENT);
46 return(Status);
47 }