/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/GlobalNotify.c

  • Committer: Gustav Hartvigsson
  • Date: 2016-09-21 17:58:06 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160921175806-ay6u7kx474oc86rb
* Fixed tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
#include "LinkedList.h"
30
30
 
 
31
 
 
32
#include "Callback.h" /* To get SCallbackEntry */
 
33
 
31
34
struct SGlobalNotify {
32
 
  SDynamicArray * tabel;
33
 
  
34
 
  size_t last;
 
35
  SDynamicArray * names; /* <gchar *> */
 
36
  
 
37
  SDynamicArray * callback_entries; /* <SLinkedList *<>> */
 
38
  
 
39
  size_t last; /* The last occupied space */
35
40
};
36
41
 
37
42
static SGlobalNotify * _global_notify_object;