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

svn path=/trunk/; revision=61943
This commit is contained in:
Amine Khaldi 2014-02-03 10:35:35 +00:00
parent 6a9e463133
commit e35722df39
4 changed files with 10 additions and 9 deletions

View file

@ -1,5 +1,5 @@
include_directories(..)
include_directories(${REACTOS_SOURCE_DIR}/drivers/storage/class)
add_library(cdrom SHARED cdrom.c findscsi.c cdrom.rc)

View file

@ -8,6 +8,13 @@
#include "precomp.h"
#include <ntddk.h>
#include <scsi.h>
#include <ntdddisk.h>
#include <ntddcdrm.h>
#include <include/class2.h>
#include <stdio.h>
//#define NDEBUG
#include <debug.h>

View file

@ -306,4 +306,3 @@ FindScsiAdapter (
#endif
return (STATUS_OBJECT_PATH_NOT_FOUND);
}

View file

@ -1,7 +1,2 @@
#include <ntddk.h>
#include <scsi.h>
#include <ntddscsi.h>
#include <ntdddisk.h>
#include <ntddcdrm.h>
#include <include/class2.h>
#include <stdio.h>
#include <ntdef.h>
#include <ntstatus.h>