Public header files must not include files from the source tree.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11435 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2016-03-26 18:03:10 +00:00
parent e31adcf1b9
commit 24fd68560f
4 changed files with 13 additions and 18 deletions

View File

@ -18,23 +18,31 @@
//
/** \file Fl_System_Driver.H
\brief declaration of classe Fl_System_Driver.
\brief declaration of class Fl_System_Driver.
*/
#ifdef __APPLE__
#include <src/drivers/Darwin/Fl_Darwin_System_Driver.H>
typedef struct CGContext* Fl_Offscreen;
typedef struct CGImage* Fl_Bitmask;
typedef struct flCocoaRegion* Fl_Region;
#elif defined(WIN32)
#include <src/drivers/WinAPI/Fl_WinAPI_System_Driver.H>
typedef struct HBITMAP__ *HBITMAP;
typedef HBITMAP Fl_Offscreen;
typedef HBITMAP Fl_Bitmask;
typedef struct HRGN__ *Fl_Region;
#elif defined(FL_PORTING)
# pragma message "FL_PORTING: define OS-dependent types"
typedef void* Fl_Offscreen;
typedef void* Fl_Bitmask;
typedef void *Fl_Region;
#else
#include <src/drivers/Posix/Fl_Posix_System_Driver.H>
#else
typedef unsigned long Fl_Offscreen;
typedef unsigned long Fl_Bitmask;
typedef struct _XRegion *Fl_Region;
#endif // __APPLE__
#ifndef FL_SYSTEM_DRIVER_H

View File

@ -27,10 +27,6 @@
#include <FL/Fl_System_Driver.H>
typedef struct CGContext* Fl_Offscreen;
typedef struct CGImage* Fl_Bitmask;
typedef struct flCocoaRegion* Fl_Region;
/*
Move everything here that manages the system interface.

View File

@ -27,10 +27,6 @@
#include <FL/Fl_System_Driver.H>
typedef unsigned long Fl_Offscreen;
typedef unsigned long Fl_Bitmask;
typedef struct _XRegion *Fl_Region;
/*
Move everything here that manages the system interface.

View File

@ -27,11 +27,6 @@
#include <FL/Fl_System_Driver.H>
typedef struct HBITMAP__ *HBITMAP;
typedef HBITMAP Fl_Offscreen;
typedef HBITMAP Fl_Bitmask;
typedef struct HRGN__ *Fl_Region;
/*
Move everything here that manages the system interface.