:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / drivers / fs / mup / create.c
1 /*
2  *  ReactOS kernel
3  *  Copyright (C) 2002 ReactOS Team
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /* $Id$
20  *
21  * COPYRIGHT:        See COPYING in the top level directory
22  * PROJECT:          ReactOS kernel
23  * FILE:             drivers/fs/mup/create.c
24  * PURPOSE:          Multi UNC Provider
25  * PROGRAMMER:       Eric Kohl
26  */
27
28 /* INCLUDES *****************************************************************/
29
30 #include <ddk/ntddk.h>
31
32 //#define NDEBUG
33 #include <debug.h>
34
35 #include "mup.h"
36
37
38 /* FUNCTIONS ****************************************************************/
39
40 NTSTATUS STDCALL
41 MupCreate(PDEVICE_OBJECT DeviceObject,
42           PIRP Irp)
43 {
44   PDEVICE_EXTENSION DeviceExt;
45   PIO_STACK_LOCATION Stack;
46   PFILE_OBJECT FileObject;
47   NTSTATUS Status;
48
49   DPRINT("MupCreate() called\n");
50
51   DeviceExt = DeviceObject->DeviceExtension;
52   assert (DeviceExt);
53   Stack = IoGetCurrentIrpStackLocation (Irp);
54   assert (Stack);
55
56   FileObject = Stack->FileObject;
57
58   DPRINT("FileName: '%wZ'\n", &FileObject->FileName);
59
60   Status = STATUS_ACCESS_DENIED;
61
62   Irp->IoStatus.Information = (NT_SUCCESS(Status)) ? FILE_OPENED : 0;
63   Irp->IoStatus.Status = Status;
64
65   IoCompleteRequest(Irp,
66                     IO_NO_INCREMENT);
67
68   return(Status);
69 }
70
71 /* EOF */