diff options
author | Adam Jackson <ajax@redhat.com> | 2014-05-23 13:23:20 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2015-07-08 16:40:58 -0400 |
commit | 36fac0dd1a9a9cf41b631cf7e1ea015bcf920db7 (patch) | |
tree | df916f97321e08d7f2e230826aef4283fa289c20 /xfixes | |
parent | 4da66d9e0399141feffd5f002e4195a438fe5020 (diff) |
xfixes: Unexport xfixes.h
There's nothing a driver could want to use this for.
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'xfixes')
-rw-r--r-- | xfixes/Makefile.am | 4 | ||||
-rw-r--r-- | xfixes/xfixes.h | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/xfixes/Makefile.am b/xfixes/Makefile.am index a8425e8ea..2a95c065b 100644 --- a/xfixes/Makefile.am +++ b/xfixes/Makefile.am @@ -2,10 +2,6 @@ noinst_LTLIBRARIES = libxfixes.la AM_CFLAGS = $(DIX_CFLAGS) -if XORG -sdk_HEADERS = xfixes.h -endif - libxfixes_la_SOURCES = \ cursor.c \ region.c \ diff --git a/xfixes/xfixes.h b/xfixes/xfixes.h index fdcf44f3f..23f31cde4 100644 --- a/xfixes/xfixes.h +++ b/xfixes/xfixes.h @@ -29,8 +29,8 @@ #include "resource.h" -extern _X_EXPORT RESTYPE RegionResType; -extern _X_EXPORT int XFixesErrorBase; +extern RESTYPE RegionResType; +extern int XFixesErrorBase; #define VERIFY_REGION(pRegion, rid, client, mode) \ do { \ @@ -48,7 +48,7 @@ extern _X_EXPORT int XFixesErrorBase; if (rid) VERIFY_REGION(pRegion, rid, client, mode); \ } -extern _X_EXPORT RegionPtr +extern RegionPtr XFixesRegionCopy(RegionPtr pRegion); #include "xibarriers.h" |