diff options
author | Blue Swirl | 2011-03-27 11:04:57 +0200 |
---|---|---|
committer | Blue Swirl | 2011-04-15 20:25:46 +0200 |
commit | 082b5557996764fb21ba8cff17aabec7242ed342 (patch) | |
tree | 4d708ddf7194737aac68e4af1a110639bc4c7cbf /qemu-os-win32.h | |
parent | Use qemu-common.h or qemu-timer.h in place of sysemu.h (diff) | |
download | qemu-082b5557996764fb21ba8cff17aabec7242ed342.tar.gz qemu-082b5557996764fb21ba8cff17aabec7242ed342.tar.xz qemu-082b5557996764fb21ba8cff17aabec7242ed342.zip |
Move generic or OS function declarations to qemu-common.h
Move generic or OS related function declarations and macro
TFR to qemu-common.h.
Move win32 include directives to qemu-os-win32.h. While moving,
also add #include <winsock2.h> to fix a recent mingw32
build breakage.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'qemu-os-win32.h')
-rw-r--r-- | qemu-os-win32.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qemu-os-win32.h b/qemu-os-win32.h index 1a07e5e264..ed2753d1b7 100644 --- a/qemu-os-win32.h +++ b/qemu-os-win32.h @@ -26,6 +26,9 @@ #ifndef QEMU_OS_WIN32_H #define QEMU_OS_WIN32_H +#include <windows.h> +#include <winsock2.h> + /* Polling handling */ /* return TRUE if no sleep should be done afterwards */ |