/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: 2021-09-09 10:23:09 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210909102309-b79pigoha67t5m92
* stuff to do with the unfinished base32 implementation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
}
49
49
 
50
50
void
51
 
s_global_notify (schar * name, spointer user_data) {
 
51
s_global_notify (schar * name,
 
52
                 spointer user_data) {
52
53
  
53
54
}
54
55
 
65
66
 
66
67
 
67
68
sint
68
 
s_global_notify_subscribe (schar * name, Callback callback) {
 
69
s_global_notify_subscribe (schar * name,
 
70
                           Callback callback) {
69
71
  return 0;
70
72
}
71
73
 
72
74
sboolean
73
 
s_global_notify_unsubscribe (schar * name, sint subscription_id) {
 
75
s_global_notify_unsubscribe (schar * name,
 
76
                             sint subscription_id) {
74
77
  return TRUE;
75
78
}
76
79