Author: akhaldi Date: Sat Jan 4 10:24:39 2014 New Revision: 61517
URL: http://svn.reactos.org/svn/reactos?rev=61517&view=rev Log: [VFATXLIB] * Remove one time inclusions from the main header and put them back where they belong. * Cleanup the main header. CORE-7716
Modified: trunk/reactos/lib/fslib/vfatxlib/fatx.c trunk/reactos/lib/fslib/vfatxlib/vfatxlib.c trunk/reactos/lib/fslib/vfatxlib/vfatxlib.h
Modified: trunk/reactos/lib/fslib/vfatxlib/fatx.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatxlib/fatx.c?r... ============================================================================== --- trunk/reactos/lib/fslib/vfatxlib/fatx.c [iso-8859-1] (original) +++ trunk/reactos/lib/fslib/vfatxlib/fatx.c [iso-8859-1] Sat Jan 4 10:24:39 2014 @@ -6,7 +6,11 @@ * PROGRAMMERS: * REVISIONS: */ + #include "vfatxlib.h" + +#include <ndk/kefuncs.h> +#include <ndk/rtlfuncs.h>
#define NDEBUG #include <debug.h>
Modified: trunk/reactos/lib/fslib/vfatxlib/vfatxlib.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatxlib/vfatxlib... ============================================================================== --- trunk/reactos/lib/fslib/vfatxlib/vfatxlib.c [iso-8859-1] (original) +++ trunk/reactos/lib/fslib/vfatxlib/vfatxlib.c [iso-8859-1] Sat Jan 4 10:24:39 2014 @@ -7,7 +7,10 @@ * REVISIONS: * CSH 05/04-2003 Created */ + #include "vfatxlib.h" + +#include <ndk/obfuncs.h>
#define NDEBUG #include <debug.h>
Modified: trunk/reactos/lib/fslib/vfatxlib/vfatxlib.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatxlib/vfatxlib... ============================================================================== --- trunk/reactos/lib/fslib/vfatxlib/vfatxlib.h [iso-8859-1] (original) +++ trunk/reactos/lib/fslib/vfatxlib/vfatxlib.h [iso-8859-1] Sat Jan 4 10:24:39 2014 @@ -3,11 +3,12 @@ * PROJECT: ReactOS VFAT filesystem library * FILE: vfatxlib.h */ + #define NTOS_MODE_USER +#include <ndk/umtypes.h> +#include <ndk/pstypes.h> +#include <ndk/ldrtypes.h> #include <ndk/iofuncs.h> -#include <ndk/kefuncs.h> -#include <ndk/obfuncs.h> -#include <ndk/rtlfuncs.h> #include <fmifs/fmifs.h>
#include <pshpack1.h>