/+junk/libgego

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/libgego

« back to all changes in this revision

Viewing changes to src/gego_global_notify.c

  • Committer: Gustav Hartvigsson
  • Date: 2015-07-08 17:45:06 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150708174506-swjhwawl76eu0pi5
* Made it compile again

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
static GegoGlobalNotify * _gego_global_notify_instance = NULL;
4
4
 
 
5
 
5
6
#define GEGO_GLOBAL_NOTIFY_GET_PRIVATE(o)\
6
7
  G_TYPE_INSTANCE_GET_PRIVATE (o, GEGO_TYPE_GLOBEL_NOTIFY, GegoGlobalNotifyPrivate)
7
8
 
29
30
 * GegoGlobalNotifyPrivate: (skip)
30
31
 *
31
32
 * @hash_table:
32
 
 * GHashTable<gchar *><GLinkedList<GegoGlobalNotifyCallbackItem*>*>*
 
33
 * GHashTable<gchar *><GLinkedList<GegoCallbackItem*>*>*
33
34
 */
34
 
struct _GegoGlobalNotifyPrivate {
 
35
struct
 
36
_GegoGlobalNotifyPrivate {
35
37
  /* < private > */
36
38
  GHashTable * hash_table;
37
 
  
38
39
};
39
40
 
40
41
 
46
47
 * @subscriber_data: The data provided by the subscriber_data.
47
48
 * @callback: The callback to be run.
48
49
 */
49
 
struct _GegoCallbackItem {
 
50
struct
 
51
_GegoCallbackItem {
50
52
  /* < private > */
51
53
  guint subscription_id;
52
54
  GQuark key_id;