Author: pschweitzer
Date: Thu Sep 10 21:35:15 2015
New Revision: 69175
URL:
http://svn.reactos.org/svn/reactos?rev=69175&view=rev
Log:
[FASTFAT]
Move VfatInitFastIoRoutines to the INIT section
Modified:
trunk/reactos/drivers/filesystems/fastfat/fastio.c
Modified: trunk/reactos/drivers/filesystems/fastfat/fastio.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/fastio.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/fastio.c [iso-8859-1] Thu Sep 10 21:35:15
2015
@@ -12,6 +12,10 @@
#define NDEBUG
#include <debug.h>
+#if defined(ALLOC_PRAGMA)
+#pragma alloc_text(INIT, VfatInitFastIoRoutines)
+#endif
+
static FAST_IO_CHECK_IF_POSSIBLE VfatFastIoCheckIfPossible;
static
@@ -779,6 +783,7 @@
ExReleaseResourceLite(&(Fcb->MainResource));
}
+INIT_SECTION
VOID
VfatInitFastIoRoutines(
PFAST_IO_DISPATCH FastIoDispatch)