Author: hbelusca
Date: Wed Sep 11 23:19:20 2013
New Revision: 60047
URL:
http://svn.reactos.org/svn/reactos?rev=60047&view=rev
Log:
[NPFS_NEW]: Add file header info.
Modified:
trunk/reactos/drivers/filesystems/npfs_new/cleanup.c
trunk/reactos/drivers/filesystems/npfs_new/close.c
trunk/reactos/drivers/filesystems/npfs_new/create.c
trunk/reactos/drivers/filesystems/npfs_new/datasup.c
trunk/reactos/drivers/filesystems/npfs_new/fileinfo.c
trunk/reactos/drivers/filesystems/npfs_new/fileobsup.c
trunk/reactos/drivers/filesystems/npfs_new/flushbuf.c
trunk/reactos/drivers/filesystems/npfs_new/fsctrl.c
trunk/reactos/drivers/filesystems/npfs_new/main.c
trunk/reactos/drivers/filesystems/npfs_new/prefxsup.c
trunk/reactos/drivers/filesystems/npfs_new/read.c
trunk/reactos/drivers/filesystems/npfs_new/readsup.c
trunk/reactos/drivers/filesystems/npfs_new/secursup.c
trunk/reactos/drivers/filesystems/npfs_new/seinfo.c
trunk/reactos/drivers/filesystems/npfs_new/statesup.c
trunk/reactos/drivers/filesystems/npfs_new/strucsup.c
trunk/reactos/drivers/filesystems/npfs_new/volinfo.c
trunk/reactos/drivers/filesystems/npfs_new/waitsup.c
trunk/reactos/drivers/filesystems/npfs_new/write.c
trunk/reactos/drivers/filesystems/npfs_new/writesup.c
Modified: trunk/reactos/drivers/filesystems/npfs_new/cleanup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/cleanup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/cleanup.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/cleanup.c
+ * PURPOSE: Pipes Cleanup
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -61,3 +73,4 @@
return Status;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/close.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/close.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/close.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/close.c
+ * PURPOSE: Pipes Closing
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -56,3 +68,4 @@
return Status;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/create.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/create.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/create.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/create.c
+ * PURPOSE: Pipes Creation
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
VOID
NTAPI
@@ -728,3 +740,4 @@
return IoStatus.Status;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/datasup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/datasup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/datasup.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/datasup.c
+ * PURPOSE: Data Queues Support
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -457,3 +469,5 @@
return Status;
}
+
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/fileinfo.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/fileinfo.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/fileinfo.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/fileinfo.c
+ * PURPOSE: Pipes Information
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -466,6 +478,4 @@
return Status;
}
-//
-// volinfo.c
-//
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/fileobsup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/fileobsup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/fileobsup.c [iso-8859-1] Wed Sep 11
23:19:20 2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/fileobsup.c
+ * PURPOSE: Pipes File Object Support
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
NODE_TYPE_CODE
NTAPI
@@ -73,3 +85,4 @@
if (FileIsPipe) FileObject->Flags |= FO_NAMED_PIPE;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/flushbuf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/flushbuf.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/flushbuf.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/flushbuf.c
+ * PURPOSE: Buffers Flushing Support
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -69,3 +81,4 @@
return Status;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/fsctrl.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/fsctrl.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/fsctrl.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,6 +1,20 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/fsctrl.c
+ * PURPOSE: Named Pipe FileSystem I/O Controls
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+/* GLOBALS ********************************************************************/
+
IO_STATUS_BLOCK NpUserIoStatusBlock;
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -687,4 +701,4 @@
return Status;
}
-
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/main.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/main.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/main.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,6 +1,20 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/main.c
+ * PURPOSE: Named Pipe FileSystem Driver Initialization
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+/* GLOBALS ********************************************************************/
+
PDEVICE_OBJECT NpfsDeviceObject;
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -70,3 +84,5 @@
ASSERT(Status == STATUS_SUCCESS);
return STATUS_SUCCESS;
}
+
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/prefxsup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/prefxsup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/prefxsup.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/prefxsup.c
+ * PURPOSE: Pipes Prefixes Support
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
PNP_FCB
NTAPI
@@ -75,3 +87,4 @@
return STATUS_SUCCESS;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/read.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/read.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/read.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,6 +1,20 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/read.c
+ * PURPOSE: Pipes Reading
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+/* GLOBALS ********************************************************************/
+
LONG NpSlowReadCalls;
+
+/* FUNCTIONS ******************************************************************/
BOOLEAN
NTAPI
@@ -172,3 +186,5 @@
return IoStatus.Status;
}
+
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/readsup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/readsup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/readsup.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/readsup.c
+ * PURPOSE: Pipes Reading Support
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
IO_STATUS_BLOCK
NTAPI
@@ -140,3 +152,4 @@
return Status;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/secursup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/secursup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/secursup.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/secursup.c
+ * PURPOSE: Pipes Security Support
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
VOID
NTAPI
@@ -118,3 +130,4 @@
return Status;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/seinfo.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/seinfo.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/seinfo.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/seinfo.c
+ * PURPOSE: Pipes Security Information
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -126,3 +138,4 @@
return Status;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/statesup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/statesup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/statesup.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/statesup.c
+ * PURPOSE: Pipes State Support
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
VOID
NTAPI
@@ -371,3 +383,4 @@
return STATUS_SUCCESS;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/strucsup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/strucsup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/strucsup.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,9 +1,23 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/strucsup.c
+ * PURPOSE:
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* GLOBALS ********************************************************************/
#define UNIMPLEMENTED
PWCHAR NpRootDCBName = L"\\";
PNP_VCB NpVcb;
+
+/* FUNCTIONS ******************************************************************/
RTL_GENERIC_COMPARE_RESULTS
NTAPI
@@ -344,3 +358,4 @@
return STATUS_SUCCESS;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/volinfo.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/volinfo.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/volinfo.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/volinfo.c
+ * PURPOSE: Named Pipe FileSystem Volume Information
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -186,3 +198,5 @@
return Status;
}
+
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/waitsup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/waitsup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/waitsup.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/waitsup.c
+ * PURPOSE: Pipes Waiting Support
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
VOID
NTAPI
@@ -189,3 +201,5 @@
}
return Status;
}
+
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/write.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/write.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/write.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,6 +1,20 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/write.c
+ * PURPOSE: Pipes Writing
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+/* GLOBALS ********************************************************************/
+
LONG NpSlowWriteCalls;
+
+/* FUNCTIONS ******************************************************************/
BOOLEAN
NTAPI
@@ -188,3 +202,4 @@
return IoStatus.Status;
}
+/* EOF */
Modified: trunk/reactos/drivers/filesystems/npfs_new/writesup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs_n…
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs_new/writesup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/npfs_new/writesup.c [iso-8859-1] Wed Sep 11 23:19:20
2013
@@ -1,4 +1,16 @@
+/*
+ * PROJECT: ReactOS Named Pipe FileSystem
+ * LICENSE: BSD - See COPYING.ARM in the top level directory
+ * FILE: drivers/filesystems/npfs/writesup.c
+ * PURPOSE: Pipes Writing Support
+ * PROGRAMMERS: ReactOS Portable Systems Group
+ */
+
+/* INCLUDES *******************************************************************/
+
#include "npfs.h"
+
+/* FUNCTIONS ******************************************************************/
NTSTATUS
NTAPI
@@ -153,3 +165,4 @@
return Status;
}
+/* EOF */