move from branch
[reactos.git] / reactos / ntoskrnl / fsrtl / pnp.c
1 /*
2 * PROJECT: ReactOS Kernel
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: ntoskrnl/fsrtl/pnp.c
5 * PURPOSE: Manages PnP support routines for file system drivers.
6 * PROGRAMMERS: None.
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <ntoskrnl.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* PUBLIC FUNCTIONS **********************************************************/
16
17 /*++
18 * @name FsRtlNotifyVolumeEvent
19 * @unimplemented
20 *
21 * FILLME
22 *
23 * @param FileObject
24 * FILLME
25 *
26 * @param EventCode
27 * FILLME
28 *
29 * @return None
30 *
31 * @remarks Only present in NT 5+.
32 *
33 *--*/
34 NTSTATUS
35 NTAPI
36 FsRtlNotifyVolumeEvent(IN PFILE_OBJECT FileObject,
37 IN ULONG EventCode)
38 {
39 /* Unimplemented */
40 KEBUGCHECK(0);
41 return STATUS_NOT_IMPLEMENTED;
42 }