Author: akhaldi
Date: Mon Feb 3 10:48:20 2014
New Revision: 61949
URL:
http://svn.reactos.org/svn/reactos?rev=61949&view=rev
Log:
[PCIIDEX]
* Remove one time inclusions from the main header and put them back where they belong.
* Improve the GUIDs situation.
* Improve header inclusions.
CORE-7716
Modified:
trunk/reactos/drivers/storage/ide/pciidex/fdo.c
trunk/reactos/drivers/storage/ide/pciidex/miniport.c
trunk/reactos/drivers/storage/ide/pciidex/pciidex.h
trunk/reactos/drivers/storage/ide/pciidex/pdo.c
Modified: trunk/reactos/drivers/storage/ide/pciidex/fdo.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/storage/ide/pciide…
==============================================================================
--- trunk/reactos/drivers/storage/ide/pciidex/fdo.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/storage/ide/pciidex/fdo.c [iso-8859-1] Mon Feb 3 10:48:20 2014
@@ -10,6 +10,9 @@
#define NDEBUG
#include <debug.h>
+
+#include <initguid.h>
+#include <wdmguid.h>
static NTSTATUS
GetBusInterface(
Modified: trunk/reactos/drivers/storage/ide/pciidex/miniport.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/storage/ide/pciide…
==============================================================================
--- trunk/reactos/drivers/storage/ide/pciidex/miniport.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/storage/ide/pciidex/miniport.c [iso-8859-1] Mon Feb 3 10:48:20
2014
@@ -6,7 +6,6 @@
* PROGRAMMERS: Hervé Poussineau (hpoussin(a)reactos.org)
*/
-#define INITGUID
#include "pciidex.h"
#define NDEBUG
Modified: trunk/reactos/drivers/storage/ide/pciidex/pciidex.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/storage/ide/pciide…
==============================================================================
--- trunk/reactos/drivers/storage/ide/pciidex/pciidex.h [iso-8859-1] (original)
+++ trunk/reactos/drivers/storage/ide/pciidex/pciidex.h [iso-8859-1] Mon Feb 3 10:48:20
2014
@@ -1,8 +1,5 @@
#include <ntifs.h>
-#include <ntddk.h>
#include <ide.h>
-#include <wdmguid.h>
-#include <stdio.h>
typedef struct _PCIIDEX_DRIVER_EXTENSION
{
Modified: trunk/reactos/drivers/storage/ide/pciidex/pdo.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/storage/ide/pciide…
==============================================================================
--- trunk/reactos/drivers/storage/ide/pciidex/pdo.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/storage/ide/pciidex/pdo.c [iso-8859-1] Mon Feb 3 10:48:20 2014
@@ -7,6 +7,8 @@
*/
#include "pciidex.h"
+
+#include <stdio.h>
#define NDEBUG
#include <debug.h>