From 5afbfdd6e157b337ab9b497cce000d46bc94aa91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Mon, 17 Oct 2005 12:02:31 +0000 Subject: [PATCH] Add PCI_WHICHSPACE_CONFIG and PCI_WHICHSPACE_ROM constants svn path=/trunk/; revision=18512 --- reactos/w32api/include/ddk/winddk.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/reactos/w32api/include/ddk/winddk.h b/reactos/w32api/include/ddk/winddk.h index edd9339b917..9d017d33795 100644 --- a/reactos/w32api/include/ddk/winddk.h +++ b/reactos/w32api/include/ddk/winddk.h @@ -3402,6 +3402,11 @@ typedef struct _IO_STACK_LOCATION { #define SL_INVOKE_ON_SUCCESS 0x40 #define SL_INVOKE_ON_ERROR 0x80 +/* IO_STACK_LOCATION.Parameters.ReadWriteControl.WhichSpace */ + +#define PCI_WHICHSPACE_CONFIG 0x0 +#define PCI_WHICHSPACE_ROM 0x52696350 /* 'PciR' */ + typedef enum _KEY_INFORMATION_CLASS { KeyBasicInformation, KeyNodeInformation,