Revision 72cf2d4f sysemu.h

b/sysemu.h
4 4

  
5 5
#include "qemu-common.h"
6 6
#include "qemu-option.h"
7
#include "sys-queue.h"
7
#include "qemu-queue.h"
8 8
#include "qdict.h"
9 9

  
10 10
#ifdef _WIN32
......
174 174
    QemuOpts *opts;
175 175
    BlockInterfaceErrorAction onerror;
176 176
    char serial[BLOCK_SERIAL_STRLEN + 1];
177
    TAILQ_ENTRY(DriveInfo) next;
177
    QTAILQ_ENTRY(DriveInfo) next;
178 178
} DriveInfo;
179 179

  
180 180
#define MAX_IDE_DEVS	2
181 181
#define MAX_SCSI_DEVS	7
182 182
#define MAX_DRIVES 32
183 183

  
184
extern TAILQ_HEAD(drivelist, DriveInfo) drives;
185
extern TAILQ_HEAD(driveoptlist, DriveOpt) driveopts;
184
extern QTAILQ_HEAD(drivelist, DriveInfo) drives;
185
extern QTAILQ_HEAD(driveoptlist, DriveOpt) driveopts;
186 186

  
187 187
extern DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit);
188 188
extern DriveInfo *drive_get_by_id(const char *id);

Also available in: Unified diff