Fix inclusion of common files, no need for common/ part

This commit is contained in:
Alexander Larsson 2010-07-08 15:44:15 +02:00
parent 14ceecd4e2
commit 405a1f71ca
11 changed files with 11 additions and 11 deletions

View File

@ -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
View File

@ -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))

View File

@ -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
View File

@ -8,7 +8,7 @@
#include "lz_common.h"
#include "lz_config.h"
#include <common/draw.h>
#include "draw.h"
typedef void *LzContext;

View File

@ -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

View File

@ -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;

View File

@ -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
View File

@ -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)

View File

@ -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
View File

@ -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,

View File

@ -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"