quartz: Fix support for files with multiple odml indexes.
[wine/wine64.git] / include / ddk / ntddk.h
blob47b6b1e32a5d5386d934d57bc62e443d56fb41d6
1 /*
2 * Copyright 2008 Francois Gouget for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef _NTDDK_
20 #define _NTDDK_
22 /* Note: We will probably have to duplicate everything ultimately :-( */
23 #include <ddk/wdm.h>
25 #include <excpt.h>
26 /* FIXME: #include <ntdef.h> */
27 #include <ntstatus.h>
28 /* FIXME: #include <bugcodes.h> */
29 /* FIXME: #include <ntiologc.h> */
32 typedef enum _BUS_DATA_TYPE
34 ConfigurationSpaceUndefined = -1,
35 Cmos,
36 EisaConfiguration,
37 Pos,
38 CbusConfiguration,
39 PCIConfiguration,
40 VMEConfiguration,
41 NuBusConfiguration,
42 PCMCIAConfiguration,
43 MPIConfiguration,
44 MPSAConfiguration,
45 PNPISAConfiguration,
46 MaximumBusDataType
47 } BUS_DATA_TYPE, *PBUS_DATA_TYPE;
49 #endif