mirror of
https://github.com/brl/mutter.git
synced 2024-11-30 12:00:44 -05:00
2f4a68c8c3
The order and way include macros were structured was chaotic, with no real common thread between files. Try to tidy up the mess with some common scheme, to make things look less messy.
14 lines
349 B
C
14 lines
349 B
C
#ifndef _META_SYNC_RING_H_
|
|
#define _META_SYNC_RING_H_
|
|
|
|
#include <glib.h>
|
|
#include <X11/Xlib.h>
|
|
|
|
gboolean meta_sync_ring_init (Display *dpy);
|
|
void meta_sync_ring_destroy (void);
|
|
gboolean meta_sync_ring_after_frame (void);
|
|
gboolean meta_sync_ring_insert_wait (void);
|
|
void meta_sync_ring_handle_event (XEvent *event);
|
|
|
|
#endif /* _META_SYNC_RING_H_ */
|