vnc-palette.h (f44d771a8cfb3a22f9de76f8aae1832ee671ecd7) vnc-palette.h (7b1b5d191385ca52e96caae2a05c64f3a63855d9)
1/*
2 * QEMU VNC display driver: palette hash table
3 *
4 * From libvncserver/libvncserver/tight.c
5 * Copyright (C) 2000, 2001 Const Kaplinsky. All Rights Reserved.
6 * Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
7 *
8 * Copyright (C) 2010 Corentin Chary <corentin.chary@gmail.com>

--- 15 unchanged lines hidden (view full) ---

24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
27 */
28
29#ifndef VNC_PALETTE_H
30#define VNC_PALETTE_H
31
1/*
2 * QEMU VNC display driver: palette hash table
3 *
4 * From libvncserver/libvncserver/tight.c
5 * Copyright (C) 2000, 2001 Const Kaplinsky. All Rights Reserved.
6 * Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
7 *
8 * Copyright (C) 2010 Corentin Chary <corentin.chary@gmail.com>

--- 15 unchanged lines hidden (view full) ---

24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
27 */
28
29#ifndef VNC_PALETTE_H
30#define VNC_PALETTE_H
31
32#include "qlist.h"
32#include "qapi/qmp/qlist.h"
33#include "qemu-queue.h"
34#include <stdint.h>
35#include <stdbool.h>
36
37#define VNC_PALETTE_HASH_SIZE 256
38#define VNC_PALETTE_MAX_SIZE 256
39
40typedef struct VncPaletteEntry {

--- 29 unchanged lines hidden ---
33#include "qemu-queue.h"
34#include <stdint.h>
35#include <stdbool.h>
36
37#define VNC_PALETTE_HASH_SIZE 256
38#define VNC_PALETTE_MAX_SIZE 256
39
40typedef struct VncPaletteEntry {

--- 29 unchanged lines hidden ---