/*Prototype:*/ void set_init_callback(void (*init_callback)(struct object *));set_init_callback() sets the initialization callback of a class. The example line of code sets the function init_my_module() as the initialization callback of the corresponding class.
/*Example of usage:*/ set_init_callback(init_my_module);