Remove all remaining _EXP suffix defines

To delimit which symbols were considered experimental we used to use
some preprocessor defines to gives experimental symbols an _EXP suffix
so that anyone monitoring the ABI for changes would easily be able to
discount changes made to clearly experimental functions.

These days we simply rely on the gtk-doc "Stability: unstable"
annotation to serve this purpose because changing the actual symbol name
made it slightly more awkward to debug Cogl using GDB and was an extra
mechanical step we decided we could do without.

This patch removes the last remaining _EXP suffix defines in Cogl

(cherry picked from commit 5a1c4a979e00accd492097cfb8f6a8d0fd8331bc)
This commit is contained in:
Robert Bragg
2012-09-01 01:17:20 +01:00
parent ce5d06afe1
commit 13f228fe69
13 changed files with 35 additions and 95 deletions

View File

@ -33,8 +33,6 @@
G_BEGIN_DECLS
#define cogl_win32_renderer_handle_event \
cogl_win32_renderer_handle_event_EXP
/**
* cogl_win32_renderer_handle_event:
* @message: A pointer to a win32 MSG struct
@ -66,7 +64,6 @@ cogl_win32_renderer_handle_event (CoglRenderer *renderer,
typedef CoglFilterReturn (* CoglWin32FilterFunc) (MSG *message,
void *data);
#define cogl_win32_renderer_add_filter cogl_win32_renderer_add_filter_EXP
/**
* cogl_win32_renderer_add_filter:
*
@ -79,8 +76,6 @@ cogl_win32_renderer_add_filter (CoglRenderer *renderer,
CoglWin32FilterFunc func,
void *data);
#define cogl_win32_renderer_remove_filter \
cogl_win32_renderer_remove_filter_EXP
/**
* cogl_win32_renderer_remove_filter:
*