qemu-img.c (96b8f136f52ea2dc5948fe24f0bf4483251ac280) | qemu-img.c (4fddf62a74c26f8da3c5ee61600e4d61052b0610) |
---|---|
1/* 2 * QEMU disk image utility 3 * 4 * Copyright (c) 2003-2007 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 12 unchanged lines hidden (view full) --- 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 * THE SOFTWARE. 23 */ 24#include "qemu-common.h" 25#include "block_int.h" 26#include <assert.h> 27 28#ifdef _WIN32 | 1/* 2 * QEMU disk image utility 3 * 4 * Copyright (c) 2003-2007 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 12 unchanged lines hidden (view full) --- 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 * THE SOFTWARE. 23 */ 24#include "qemu-common.h" 25#include "block_int.h" 26#include <assert.h> 27 28#ifdef _WIN32 |
29#define WIN32_LEAN_AND_MEAN |
|
29#include <windows.h> 30#endif 31 32void *get_mmap_addr(unsigned long size) 33{ 34 return NULL; 35} 36 --- 716 unchanged lines hidden --- | 30#include <windows.h> 31#endif 32 33void *get_mmap_addr(unsigned long size) 34{ 35 return NULL; 36} 37 --- 716 unchanged lines hidden --- |