Make headers selfcontained.

SVN revision: 16530
This commit is contained in:
sebastid 2005-09-04 19:02:15 +00:00 committed by sebastid
parent 8903734b6a
commit ec6b20852f
9 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,8 @@
#ifndef _EVAS_ENGINE_BUFFER_H
#define _EVAS_ENGINE_BUFFER_H
#include <Evas.h>
#define EVAS_ENGINE_BUFFER_DEPTH_ARGB32 0
#define EVAS_ENGINE_BUFFER_DEPTH_BGRA32 1
#define EVAS_ENGINE_BUFFER_DEPTH_RGB24 2

View File

@ -1,6 +1,7 @@
#ifndef _EVAS_ENGINE_CAIRO_X11_H
#define _EVAS_ENGINE_CAIRO_X11_H
#include <Evas.h>
#include <X11/Xlib.h>
typedef struct _Evas_Engine_Info_Cairo_X11 Evas_Engine_Info_Cairo_X11;

View File

@ -1,7 +1,7 @@
#ifndef _EVAS_ENGINE_DIRECTFB_H
#define _EVAS_ENGINE_DIRECTFB_H
#include <Evas.h>
#include <Evas.h>
#include <directfb/directfb.h>
typedef struct _Evas_Engine_Info_DirectFB Evas_Engine_Info_DirectFB;

View File

@ -1,6 +1,8 @@
#ifndef _EVAS_ENGINE_FB_H
#define _EVAS_ENGINE_FB_H
#include <Evas.h>
typedef struct _Evas_Engine_Info_FB Evas_Engine_Info_FB;
struct _Evas_Engine_Info_FB

View File

@ -1,6 +1,7 @@
#ifndef _EVAS_ENGINE_GL_X11_H
#define _EVAS_ENGINE_GL_X11_H
#include <Evas.h>
#include <X11/Xlib.h>
#include <GL/gl.h>
#include <GL/glu.h>

View File

@ -1,6 +1,8 @@
#ifndef _EVAS_ENGINE_SOFTWARE_QTOPIA_H
#define _EVAS_ENGINE_SOFTWARE_QTOPIA_H
#include <Evas.h>
#ifdef EVAS_COMMON_H
#ifdef EVAS_PRIVATE_H
typedef void QWidget;

View File

@ -1,6 +1,7 @@
#ifndef _EVAS_ENGINE_SOFTWARE_WIN32_GDI_H
#define _EVAS_ENGINE_SOFTWARE_WIN32_GDI_H
#include <Evas.h>
typedef struct _Evas_Engine_Info_Software_Win32_GDI Evas_Engine_Info_Software_Win32_GDI;

View File

@ -1,6 +1,7 @@
#ifndef _EVAS_ENGINE_SOFTWARE_X11_H
#define _EVAS_ENGINE_SOFTWARE_X11_H
#include <Evas.h>
#include <X11/Xlib.h>
typedef struct _Evas_Engine_Info_Software_X11 Evas_Engine_Info_Software_X11;

View File

@ -1,6 +1,7 @@
#ifndef _EVAS_ENGINE_SOFTWARE_XCB_H
#define _EVAS_ENGINE_SOFTWARE_XCB_H
#include <Evas.h>
#include <X11/XCB/xcb.h>
typedef struct _Evas_Engine_Info_Software_Xcb Evas_Engine_Info_Software_Xcb;