Commit f8bfb1dc8b7714f01b414d1845c855264cb4f6bd
Committed by
Anthony Liguori
1 parent
2bb8c10c
tap-win32: Use correct headers.
Replace the usage of DDK headers with the SDK counterpart "winioctl.h". Signed-off-by: Filip Navara <filip.navara@gmail.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Showing
1 changed file
with
1 additions
and
7 deletions
tap-win32.c
| ... | ... | @@ -30,13 +30,7 @@ |
| 30 | 30 | #include "sysemu.h" |
| 31 | 31 | #include <stdio.h> |
| 32 | 32 | #include <windows.h> |
| 33 | - | |
| 34 | -/* NOTE: PCIBus is redefined in winddk.h */ | |
| 35 | -#define PCIBus _PCIBus | |
| 36 | -#include <ddk/ntapi.h> | |
| 37 | -#include <ddk/winddk.h> | |
| 38 | -#include <ddk/ntddk.h> | |
| 39 | -#undef PCIBus | |
| 33 | +#include <winioctl.h> | |
| 40 | 34 | |
| 41 | 35 | //============= |
| 42 | 36 | // TAP IOCTLs | ... | ... |