Revision 41b4bef6 vnc.h

b/vnc.h
28 28
#define __QEMU_VNC_H
29 29

  
30 30
#include "qemu-common.h"
31
#include "qemu-queue.h"
31 32
#include "console.h"
32 33
#include "monitor.h"
33 34
#include "audio/audio.h"
......
92 93

  
93 94
struct VncDisplay
94 95
{
96
    QTAILQ_HEAD(, VncState) clients;
95 97
    QEMUTimer *timer;
96 98
    int timer_interval;
97 99
    int lsock;
98 100
    DisplayState *ds;
99
    VncState *clients;
100 101
    kbd_layout_t *kbd_layout;
101 102

  
102 103
    struct VncSurface guest;   /* guest visible surface (aka ds->surface) */
......
165 166
    Buffer zlib_tmp;
166 167
    z_stream zlib_stream[4];
167 168

  
168
    VncState *next;
169
    QTAILQ_ENTRY(VncState) next;
169 170
};
170 171

  
171 172

  

Also available in: Unified diff