vnc.h (33f18cf7dca7741d3647d514040904ce83edd73d) | vnc.h (6bf21f3d83e95bcc4ba35a7a07cc6655e8b010b0) |
---|---|
1/* 2 * QEMU VNC display driver 3 * 4 * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws> 5 * Copyright (C) 2006 Fabrice Bellard 6 * Copyright (C) 2009 Red Hat, Inc 7 * 8 * Permission is hereby granted, free of charge, to any person obtaining a copy --- 324 unchanged lines hidden (view full) --- 333 bool abort; 334 QemuMutex output_mutex; 335 QEMUBH *bh; 336 Buffer jobs_buffer; 337 338 /* Encoding specific, if you add something here, don't forget to 339 * update vnc_async_encoding_start() 340 */ | 1/* 2 * QEMU VNC display driver 3 * 4 * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws> 5 * Copyright (C) 2006 Fabrice Bellard 6 * Copyright (C) 2009 Red Hat, Inc 7 * 8 * Permission is hereby granted, free of charge, to any person obtaining a copy --- 324 unchanged lines hidden (view full) --- 333 bool abort; 334 QemuMutex output_mutex; 335 QEMUBH *bh; 336 Buffer jobs_buffer; 337 338 /* Encoding specific, if you add something here, don't forget to 339 * update vnc_async_encoding_start() 340 */ |
341 VncTight tight; | 341 VncTight *tight; |
342 VncZlib zlib; 343 VncHextile hextile; | 342 VncZlib zlib; 343 VncHextile hextile; |
344 VncZrle zrle; | 344 VncZrle *zrle; |
345 VncZywrle zywrle; 346 347 Notifier mouse_mode_notifier; 348 349 QTAILQ_ENTRY(VncState) next; 350}; 351 352 --- 249 unchanged lines hidden --- | 345 VncZywrle zywrle; 346 347 Notifier mouse_mode_notifier; 348 349 QTAILQ_ENTRY(VncState) next; 350}; 351 352 --- 249 unchanged lines hidden --- |