mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 05:32:55 +00:00
[USBSTOR]
* Do not include debug.h into the main header. CORE-7716 svn path=/trunk/; revision=61348
This commit is contained in:
parent
90c20950e8
commit
2f71f0d785
10 changed files with 27 additions and 3 deletions
|
@ -11,6 +11,9 @@
|
||||||
|
|
||||||
#include "usbstor.h"
|
#include "usbstor.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
USBSTOR_GetDescriptor(
|
USBSTOR_GetDescriptor(
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
|
|
||||||
#include "usbstor.h"
|
#include "usbstor.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
USBSTOR_HandleInternalDeviceControl(
|
USBSTOR_HandleInternalDeviceControl(
|
||||||
IN PDEVICE_OBJECT DeviceObject,
|
IN PDEVICE_OBJECT DeviceObject,
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
|
|
||||||
#include "usbstor.h"
|
#include "usbstor.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
USBSTOR_GetEndpointStatus(
|
USBSTOR_GetEndpointStatus(
|
||||||
IN PDEVICE_OBJECT DeviceObject,
|
IN PDEVICE_OBJECT DeviceObject,
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
|
|
||||||
#include "usbstor.h"
|
#include "usbstor.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
USBSTOR_DumpDeviceDescriptor(PUSB_DEVICE_DESCRIPTOR DeviceDescriptor)
|
USBSTOR_DumpDeviceDescriptor(PUSB_DEVICE_DESCRIPTOR DeviceDescriptor)
|
||||||
{
|
{
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
|
|
||||||
#include "usbstor.h"
|
#include "usbstor.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
//
|
//
|
||||||
// driver verifier
|
// driver verifier
|
||||||
//
|
//
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
|
|
||||||
#include "usbstor.h"
|
#include "usbstor.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
LPCSTR
|
LPCSTR
|
||||||
USBSTOR_GetDeviceType(
|
USBSTOR_GetDeviceType(
|
||||||
IN PUFI_INQUIRY_RESPONSE InquiryData,
|
IN PUFI_INQUIRY_RESPONSE InquiryData,
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
|
|
||||||
#include "usbstor.h"
|
#include "usbstor.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
USBSTOR_QueueInitialize(
|
USBSTOR_QueueInitialize(
|
||||||
PFDO_DEVICE_EXTENSION FDODeviceExtension)
|
PFDO_DEVICE_EXTENSION FDODeviceExtension)
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
|
|
||||||
#include "usbstor.h"
|
#include "usbstor.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
USBSTOR_BuildCBW(
|
USBSTOR_BuildCBW(
|
||||||
IN ULONG Tag,
|
IN ULONG Tag,
|
||||||
|
|
|
@ -10,10 +10,12 @@
|
||||||
|
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#define NDEBUG
|
|
||||||
#define INITGUID
|
#define INITGUID
|
||||||
#include "usbstor.h"
|
#include "usbstor.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
/* PUBLIC AND PRIVATE FUNCTIONS **********************************************/
|
/* PUBLIC AND PRIVATE FUNCTIONS **********************************************/
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <ntddk.h>
|
#include <ntddk.h>
|
||||||
#define NDEBUG
|
|
||||||
#include <debug.h>
|
|
||||||
#include <usbdi.h>
|
#include <usbdi.h>
|
||||||
#include <hubbusif.h>
|
#include <hubbusif.h>
|
||||||
#include <usbbusif.h>
|
#include <usbbusif.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue