xref: /reactos/drivers/filesystems/mup/dfs.c (revision 50cf16b3)
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 #if defined(ALLOC_PRAGMA)
35 #pragma alloc_text(INIT, DfsDriverEntry)
36 #endif
37 
38 /* FUNCTIONS ****************************************************************/
39 
40 NTSTATUS
41 NTAPI
42 DfsVolumePassThrough(PDEVICE_OBJECT DeviceObject,
43                      PIRP Irp)
44 {
45     return STATUS_NOT_IMPLEMENTED;
46 }
47 
48 NTSTATUS
49 DfsFsdFileSystemControl(PDEVICE_OBJECT DeviceObject,
50                         PIRP Irp)
51 {
52     return STATUS_NOT_IMPLEMENTED;
53 }
54 
55 NTSTATUS
56 DfsFsdCreate(PDEVICE_OBJECT DeviceObject,
57              PIRP Irp)
58 {
59     UNIMPLEMENTED;
60     return STATUS_NOT_IMPLEMENTED;
61 }
62 
63 NTSTATUS
64 DfsFsdCleanup(PDEVICE_OBJECT DeviceObject,
65               PIRP Irp)
66 {
67     UNIMPLEMENTED;
68     return STATUS_NOT_IMPLEMENTED;
69 }
70 
71 NTSTATUS
72 DfsFsdClose(PDEVICE_OBJECT DeviceObject,
73             PIRP Irp)
74 {
75     UNIMPLEMENTED;
76     return STATUS_NOT_IMPLEMENTED;
77 }
78 
79 VOID
80 DfsUnload(PDRIVER_OBJECT DriverObject)
81 {
82     UNIMPLEMENTED;
83 }
84 
85 INIT_FUNCTION
86 NTSTATUS
87 DfsDriverEntry(PDRIVER_OBJECT DriverObject,
88                PUNICODE_STRING RegistryPath)
89 {
90     /* We don't support DFS yet, so
91      * fail to make sure it remains disabled
92      */
93     DPRINT("DfsDriverEntry not implemented\n");
94     return STATUS_NOT_IMPLEMENTED;
95 }
96 
97