[SHELL32] Update Russian translation, following 6465705
[reactos.git] / drivers / filters / fltmgr / Misc.c
1 /*
2 * PROJECT: Filesystem Filter Manager
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: drivers/filters/fltmgr/Misc.c
5 * PURPOSE: Uncataloged functions
6 * PROGRAMMERS: Ged Murphy (gedmurphy@reactos.org)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include "fltmgr.h"
12 #include "fltmgrint.h"
13
14 #define NDEBUG
15 #include <debug.h>
16
17
18 /* DATA *********************************************************************/
19
20
21
22
23 /* EXPORTED FUNCTIONS ******************************************************/
24
25 NTSTATUS
26 FLTAPI
27 FltBuildDefaultSecurityDescriptor(
28 _Outptr_ PSECURITY_DESCRIPTOR *SecurityDescriptor,
29 _In_ ACCESS_MASK DesiredAccess
30 )
31 {
32 UNREFERENCED_PARAMETER(SecurityDescriptor);
33 UNREFERENCED_PARAMETER(DesiredAccess);
34 return 0;
35 }
36
37 VOID
38 FLTAPI
39 FltFreeSecurityDescriptor(
40 _In_ PSECURITY_DESCRIPTOR SecurityDescriptor
41 )
42 {
43 UNREFERENCED_PARAMETER(SecurityDescriptor);
44 }
45
46 NTSTATUS
47 FLTAPI
48 FltGetDiskDeviceObject(
49 _In_ PFLT_VOLUME Volume,
50 _Outptr_ PDEVICE_OBJECT *DiskDeviceObject
51 )
52 {
53 UNREFERENCED_PARAMETER(Volume);
54 UNREFERENCED_PARAMETER(DiskDeviceObject);
55 return 0;
56 }