mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2025-12-30 18:00:25 +00:00
Fix inclusion of common files, no need for common/ part
This commit is contained in:
parent
14ceecd4e2
commit
405a1f71ca
@ -23,7 +23,7 @@
|
||||
#include "pixman_utils.h"
|
||||
#include "lz.h"
|
||||
#include "region.h"
|
||||
#include <common/draw.h>
|
||||
#include "draw.h"
|
||||
|
||||
typedef void (*spice_destroy_fn_t)(void *data);
|
||||
|
||||
|
||||
2
draw.h
2
draw.h
@ -33,7 +33,7 @@
|
||||
|
||||
#include <spice/types.h>
|
||||
#include <spice/enums.h>
|
||||
#include <common/mem.h>
|
||||
#include "mem.h"
|
||||
|
||||
#define SPICE_GET_ADDRESS(addr) ((void *)(unsigned long)(addr))
|
||||
#define SPICE_SET_ADDRESS(addr, val) ((addr) = (unsigned long)(val))
|
||||
|
||||
2
lines.h
2
lines.h
@ -52,7 +52,7 @@ SOFTWARE.
|
||||
#include <pixman_utils.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <common/draw.h>
|
||||
#include "draw.h"
|
||||
|
||||
typedef struct lineGC lineGC;
|
||||
|
||||
|
||||
2
lz.h
2
lz.h
@ -8,7 +8,7 @@
|
||||
|
||||
#include "lz_common.h"
|
||||
#include "lz_config.h"
|
||||
#include <common/draw.h>
|
||||
#include "draw.h"
|
||||
|
||||
typedef void *LzContext;
|
||||
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
#define _H_MARSHALLER
|
||||
|
||||
#include <spice/types.h>
|
||||
#include <common/mem.h>
|
||||
#include "mem.h"
|
||||
#ifndef WIN32
|
||||
#include <sys/uio.h>
|
||||
#endif
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
#define _H_MESSAGES
|
||||
|
||||
#include <spice/protocol.h>
|
||||
#include <common/draw.h>
|
||||
#include "draw.h"
|
||||
|
||||
typedef struct SpiceMsgData {
|
||||
uint32_t data_size;
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
#define PIXMAN_DONT_DEFINE_STDINT
|
||||
#include <pixman.h>
|
||||
|
||||
#include <common/draw.h>
|
||||
#include "draw.h"
|
||||
|
||||
/* This lists all possible 2 argument binary raster ops.
|
||||
* This enum has the same values as the X11 GXcopy type
|
||||
|
||||
2
rect.h
2
rect.h
@ -19,7 +19,7 @@
|
||||
#ifndef _H_RECT
|
||||
#define _H_RECT
|
||||
|
||||
#include <common/draw.h>
|
||||
#include "draw.h"
|
||||
#include <spice/macros.h>
|
||||
|
||||
static inline void rect_sect(SpiceRect* r, const SpiceRect* bounds)
|
||||
|
||||
2
region.h
2
region.h
@ -20,7 +20,7 @@
|
||||
#define _H_REGION
|
||||
|
||||
#include <stdint.h>
|
||||
#include <common/draw.h>
|
||||
#include "draw.h"
|
||||
#include <pixman_utils.h>
|
||||
|
||||
typedef pixman_region32_t QRegion;
|
||||
|
||||
2
rop3.h
2
rop3.h
@ -21,7 +21,7 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <common/draw.h>
|
||||
#include "draw.h"
|
||||
#include "pixman_utils.h"
|
||||
|
||||
void do_rop3_with_pattern(uint8_t rop3, pixman_image_t *d, pixman_image_t *s, SpicePoint *src_pos,
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <common/draw.h>
|
||||
#include "draw.h"
|
||||
#include "pixman_utils.h"
|
||||
#include "canvas_base.h"
|
||||
#include "region.h"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user