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/filesystems/mup/dfs.c
23 * PURPOSE: Multi UNC Provider
24 * PROGRAMMER: Pierre Schweitzer (pierre@reactos.org)
25 */
26
27 /* INCLUDES *****************************************************************/
28
29 #include "mup.h"
30
31 #define NDEBUG
32 #include <debug.h>
33
34 /* FUNCTIONS ****************************************************************/
35
36 NTSTATUS
37 NTAPI
DfsVolumePassThrough(PDEVICE_OBJECT DeviceObject,PIRP Irp)38 DfsVolumePassThrough(PDEVICE_OBJECT DeviceObject,
39 PIRP Irp)
40 {
41 return STATUS_NOT_IMPLEMENTED;
42 }
43
44 NTSTATUS
DfsFsdFileSystemControl(PDEVICE_OBJECT DeviceObject,PIRP Irp)45 DfsFsdFileSystemControl(PDEVICE_OBJECT DeviceObject,
46 PIRP Irp)
47 {
48 return STATUS_NOT_IMPLEMENTED;
49 }
50
51 NTSTATUS
DfsFsdCreate(PDEVICE_OBJECT DeviceObject,PIRP Irp)52 DfsFsdCreate(PDEVICE_OBJECT DeviceObject,
53 PIRP Irp)
54 {
55 UNIMPLEMENTED;
56 return STATUS_NOT_IMPLEMENTED;
57 }
58
59 NTSTATUS
DfsFsdCleanup(PDEVICE_OBJECT DeviceObject,PIRP Irp)60 DfsFsdCleanup(PDEVICE_OBJECT DeviceObject,
61 PIRP Irp)
62 {
63 UNIMPLEMENTED;
64 return STATUS_NOT_IMPLEMENTED;
65 }
66
67 NTSTATUS
DfsFsdClose(PDEVICE_OBJECT DeviceObject,PIRP Irp)68 DfsFsdClose(PDEVICE_OBJECT DeviceObject,
69 PIRP Irp)
70 {
71 UNIMPLEMENTED;
72 return STATUS_NOT_IMPLEMENTED;
73 }
74
75 VOID
DfsUnload(PDRIVER_OBJECT DriverObject)76 DfsUnload(PDRIVER_OBJECT DriverObject)
77 {
78 UNIMPLEMENTED;
79 }
80
81 CODE_SEG("INIT")
82 NTSTATUS
DfsDriverEntry(PDRIVER_OBJECT DriverObject,PUNICODE_STRING RegistryPath)83 DfsDriverEntry(PDRIVER_OBJECT DriverObject,
84 PUNICODE_STRING RegistryPath)
85 {
86 /* We don't support DFS yet, so
87 * fail to make sure it remains disabled
88 */
89 DPRINT("DfsDriverEntry not implemented\n");
90 return STATUS_NOT_IMPLEMENTED;
91 }
92
93