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)
9 /* INCLUDES ******************************************************************/
12 #include "fltmgrint.h"
18 /* DATA *********************************************************************/
23 /* EXPORTED FUNCTIONS ******************************************************/
27 FltBuildDefaultSecurityDescriptor(
28 _Outptr_ PSECURITY_DESCRIPTOR
*SecurityDescriptor
,
29 _In_ ACCESS_MASK DesiredAccess
32 UNREFERENCED_PARAMETER(DesiredAccess
);
33 *SecurityDescriptor
= NULL
;
39 FltFreeSecurityDescriptor(
40 _In_ PSECURITY_DESCRIPTOR SecurityDescriptor
43 UNREFERENCED_PARAMETER(SecurityDescriptor
);
48 FltGetDiskDeviceObject(
49 _In_ PFLT_VOLUME Volume
,
50 _Outptr_ PDEVICE_OBJECT
*DiskDeviceObject
53 UNREFERENCED_PARAMETER(Volume
);
54 UNREFERENCED_PARAMETER(DiskDeviceObject
);
60 FltGetFileNameInformationUnsafe(
61 _In_ PFILE_OBJECT FileObject
,
62 _In_opt_ PFLT_INSTANCE Instance
,
63 _In_ FLT_FILE_NAME_OPTIONS NameOptions
,
64 _Outptr_ PFLT_FILE_NAME_INFORMATION
*FileNameInformation
)
66 UNREFERENCED_PARAMETER(FileObject
);
67 UNREFERENCED_PARAMETER(Instance
);
68 UNREFERENCED_PARAMETER(NameOptions
);
69 *FileNameInformation
= NULL
;