:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / drivers / fs / ext2 / security.c
1 /*
2  * COPYRIGHT:        See COPYING in the top level directory
3  * PROJECT:          ReactOS kernel
4  * FILE:             services/fs/ext2/security.c
5  * PURPOSE:          Security 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 Ext2QuerySecurity(PDEVICE_OBJECT DeviceObject, PIRP Irp)
25 {
26    DPRINT("Ext2QuerySecurity(DeviceObject %x Irp %x)\n",DeviceObject,Irp);
27    
28    Irp->IoStatus.Status = STATUS_NOT_IMPLEMENTED;
29    Irp->IoStatus.Information = 0;
30    return(STATUS_UNSUCCESSFUL);
31 }
32
33 NTSTATUS STDCALL
34 Ext2SetSecurity(PDEVICE_OBJECT DeviceObject, PIRP Irp)
35 {
36    DPRINT("Ext2SetSecurity(DeviceObject %x Irp %x)\n",DeviceObject,Irp);
37    
38    Irp->IoStatus.Status = STATUS_NOT_IMPLEMENTED;
39    Irp->IoStatus.Information = 0;
40    return(STATUS_UNSUCCESSFUL);
41 }