* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61869
This commit is contained in:
Amine Khaldi 2014-01-28 21:21:04 +00:00
parent 892e41ffa8
commit ce6694437c
15 changed files with 2 additions and 42 deletions

View file

@ -31,9 +31,6 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
static static

View file

@ -30,9 +30,6 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
NTSTATUS NTSTATUS

View file

@ -31,9 +31,6 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
/* /*

View file

@ -30,9 +30,6 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
static static

View file

@ -30,9 +30,6 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
#if 0 #if 0

View file

@ -31,9 +31,6 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
/* /*

View file

@ -32,7 +32,6 @@
#include "ntfs.h" #include "ntfs.h"
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
BOOLEAN BOOLEAN

View file

@ -30,16 +30,10 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* MACROS *******************************************************************/ /* MACROS *******************************************************************/
#define TAG_FCB 'BCFI' #define TAG_FCB 'BCFI'
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
static static

View file

@ -30,9 +30,6 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
/* /*

View file

@ -29,11 +29,11 @@
#include "ntfs.h" #include "ntfs.h"
#include <ntdddisk.h>
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
/* /*

View file

@ -31,12 +31,8 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
NTSTATUS NTSTATUS
NtfsOpenMft(PDEVICE_EXTENSION Vcb) NtfsOpenMft(PDEVICE_EXTENSION Vcb)
{ {

View file

@ -31,9 +31,6 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *****************************************************************/
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
/* /*

View file

@ -35,7 +35,6 @@
PNTFS_GLOBAL_DATA NtfsGlobalData = NULL; PNTFS_GLOBAL_DATA NtfsGlobalData = NULL;
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
/* /*

View file

@ -2,8 +2,6 @@
#define NTFS_H #define NTFS_H
#include <ntifs.h> #include <ntifs.h>
#include <ntddk.h>
#include <ntdddisk.h>
#define CACHEPAGESIZE(pDeviceExt) \ #define CACHEPAGESIZE(pDeviceExt) \
((pDeviceExt)->NtfsInfo.UCHARsPerCluster > PAGE_SIZE ? \ ((pDeviceExt)->NtfsInfo.UCHARsPerCluster > PAGE_SIZE ? \

View file

@ -32,13 +32,11 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
/* GLOBALS *******************************************************************/ /* GLOBALS *******************************************************************/
#define ROUND_UP(N, S) ((((N) + (S) - 1) / (S)) * (S)) #define ROUND_UP(N, S) ((((N) + (S) - 1) / (S)) * (S))
#define ROUND_DOWN(N, S) ((N) - ((N) % (S))) #define ROUND_DOWN(N, S) ((N) - ((N) % (S)))
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
/* /*