/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 src/baseobject.h

  • Committer: Gustav Hartvigsson
  • Date: 2013-09-03 22:18:54 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20130903221854-0xxnlloz690hs22o
Made the code compile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
 * 
74
74
 * set it to a method that deinitize your object.
75
75
 */
76
 
void base_object_set_deinit_method (BaseObjectInstance * self, void (* method)(* BaseObjectInstance));
 
76
void base_object_set_deinit_method (BaseObjectInstance * self, void (* method)(BaseObjectInstance *));
77
77
 
78
78
/**
79
79
 * This fuction is used to set the ref method.
80
80
 * 
81
81
 * DO NOT USE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.
82
82
 */
83
 
void base_object_set_ref_method (BaseObjectInstance * self, int (* method)(* BaseObjectInstance));
 
83
void base_object_set_ref_method (BaseObjectInstance * self, int (* method)(BaseObjectInstance *));
84
84
 
85
85
/**
86
86
 * This fuction is used to set the unref method.
87
87
 * 
88
88
 * DO NOT USE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.
89
89
 */
90
 
void base_object_set_unref_method (BaseObjectInstance * self, int (* method)(* BaseObjectInstance));
 
90
void base_object_set_unref_method (BaseObjectInstance * self, int (* method)(BaseObjectInstance *));
91
91
 
92
92
/**
93
93
 * This fuction is used to set the get_refcount method.
94
94
 * 
95
95
 * DO NOT USE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.
96
96
 */
97
 
void base_object_set_get_refcount_method (BaseObjectInstance * self, int (* method)(* BaseObjectInstance));
 
97
void base_object_set_get_refcount_method (BaseObjectInstance * self, int (* method)(BaseObjectInstance *));
98
98
 
99
99
/**
100
100
 * This fuction is used to set the to_string method.
101
101
 */
102
 
void base_object_set_to_string_method (BaseObjectInstance * self, char * (* method)(* BaseObjectInstance));
 
102
void base_object_set_to_string_method (BaseObjectInstance * self, char * (* method)(BaseObjectInstance *));
103
103
 
104
104
 
105
105
/*