Sync with trunk r58740.
[reactos.git] / drivers / filesystems / 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 along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 /*
20 * COPYRIGHT: See COPYING in the top level directory
21 * PROJECT: ReactOS kernel
22 * FILE: drivers/fs/mup/create.c
23 * PURPOSE: Multi UNC Provider
24 * PROGRAMMER: Eric Kohl
25 */
26
27 /* INCLUDES *****************************************************************/
28
29 #include "mup.h"
30
31 #define NDEBUG
32 #include <debug.h>
33
34 /* FUNCTIONS ****************************************************************/
35
36 NTSTATUS NTAPI
37 MupCreate(PDEVICE_OBJECT DeviceObject,
38 PIRP Irp)
39 {
40 PDEVICE_EXTENSION DeviceExt;
41 PIO_STACK_LOCATION Stack;
42 PFILE_OBJECT FileObject;
43 NTSTATUS Status;
44
45 DPRINT("MupCreate() called\n");
46
47 DeviceExt = DeviceObject->DeviceExtension;
48 ASSERT(DeviceExt);
49 Stack = IoGetCurrentIrpStackLocation (Irp);
50 ASSERT(Stack);
51
52 FileObject = Stack->FileObject;
53
54 DPRINT("FileName: '%wZ'\n", &FileObject->FileName);
55
56 Status = STATUS_BAD_NETWORK_PATH;
57
58 Irp->IoStatus.Information = (NT_SUCCESS(Status)) ? FILE_OPENED : 0;
59 Irp->IoStatus.Status = Status;
60
61 IoCompleteRequest(Irp,
62 IO_NO_INCREMENT);
63
64 return Status;
65 }
66
67 /* EOF */