:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / 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 <string.h>
15
16 //#define NDEBUG
17 #include <debug.h>
18
19 #include "ext2fs.h"
20
21 /* FUNCTIONS ****************************************************************/
22
23 NTSTATUS STDCALL
24 Ext2QueryQuota(PDEVICE_OBJECT DeviceObject, PIRP Irp)
25 {
26    NTSTATUS Status;
27    
28    Status = STATUS_NOT_IMPLEMENTED;
29    
30    Irp->IoStatus.Status = Status;
31    Irp->IoStatus.Information = 0;
32    
33    IoCompleteRequest(Irp, IO_NO_INCREMENT);
34    return(Status);
35 }
36
37 NTSTATUS STDCALL
38 Ext2SetQuota(PDEVICE_OBJECT DeviceObject, PIRP Irp)
39 {
40    NTSTATUS Status;
41    
42    Status = STATUS_NOT_IMPLEMENTED;
43    
44    Irp->IoStatus.Status = Status;
45    Irp->IoStatus.Information = 0;
46    
47    IoCompleteRequest(Irp, IO_NO_INCREMENT);
48    return(Status);
49 }