ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

fsfilter.c
Go to the documentation of this file.
00001 /*
00002  * PROJECT:         ReactOS Kernel
00003  * LICENSE:         GPL - See COPYING in the top level directory
00004  * FILE:            ntoskrnl/fsrtl/fsfilter.c
00005  * PURPOSE:         Provides support for the Filter Manager
00006  * PROGRAMMERS:     None.
00007  */
00008 
00009 /* INCLUDES ******************************************************************/
00010 
00011 #include <ntoskrnl.h>
00012 #define NDEBUG
00013 #include <debug.h>
00014 
00015 /* PUBLIC FUNCTIONS **********************************************************/
00016 
00017 /*++
00018  * @name FsRtlCreateSectionForDataScan
00019  * @unimplemented
00020  *
00021  * FILLME
00022  *
00023  * @param SectionHandle
00024  *        FILLME
00025  *
00026  * @param SectionObject
00027  *        FILLME
00028  *
00029  * @param SectionFileSize
00030  *        FILLME
00031  *
00032  * @param FileObject
00033  *        FILLME
00034  *
00035  * @param DesiredAccess
00036  *        FILLME
00037  *
00038  * @param ObjectAttributes
00039  *        FILLME
00040  *
00041  * @param MaximumSize
00042  *        FILLME
00043  *
00044  * @param SectionPageProtection
00045  *        FILLME
00046  *
00047  * @param AllocationAttributes
00048  *        FILLME
00049  *
00050  * @param Flags
00051  *        FILLME
00052  *
00053  * @return None
00054  *
00055  * @remarks None
00056  *
00057  *--*/
00058 NTSTATUS
00059 NTAPI
00060 FsRtlCreateSectionForDataScan(OUT PHANDLE SectionHandle,
00061                               OUT PVOID *SectionObject,
00062                               OUT PLARGE_INTEGER SectionFileSize OPTIONAL,
00063                               IN PFILE_OBJECT FileObject,
00064                               IN ACCESS_MASK DesiredAccess,
00065                               IN POBJECT_ATTRIBUTES ObjectAttributes OPTIONAL,
00066                               IN PLARGE_INTEGER MaximumSize OPTIONAL,
00067                               IN ULONG SectionPageProtection,
00068                               IN ULONG AllocationAttributes,
00069                               IN ULONG Flags)
00070 {
00071     /* Unimplemented */
00072     KeBugCheck(FILE_SYSTEM);
00073     return STATUS_NOT_IMPLEMENTED;
00074 }
00075 

Generated on Sat May 26 2012 04:36:04 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.