ctf-text plugin stub
[babeltrace.git] / include / babeltrace / plugin / plugin.h
index 945deb940a956fe580e66336b4658e506a0796e7..1642b7a0cf4956dd454fe925e792555e243e820f 100644 (file)
@@ -39,8 +39,8 @@ typedef void (*bt_plugin_exit_func)(void);
 #define BT_PLUGIN_NAME(_x)     const char *__bt_plugin_name = (_x)
 #define BT_PLUGIN_AUTHOR(_x)   const char *__bt_plugin_author = (_x)
 #define BT_PLUGIN_LICENSE(_x)  const char *__bt_plugin_license = (_x)
-#define BT_PLUGIN_INIT(_x)      bt_plugin_init __bt_plugin_init = (_x)
-#define BT_PLUGIN_EXIT(_x)      bt_plugin_exit __bt_plugin_exit = (_x)
+#define BT_PLUGIN_INIT(_x)      bt_plugin_init_func __bt_plugin_init = (_x)
+#define BT_PLUGIN_EXIT(_x)      bt_plugin_exit_func __bt_plugin_exit = (_x)
 
 #define BT_PLUGIN_COMPONENT_CLASSES_BEGIN                      \
        enum bt_component_status __bt_plugin_register_component_classes(\
@@ -61,6 +61,5 @@ typedef void (*bt_plugin_exit_func)(void);
 }\
        \
        BT_PLUGIN_INIT(__bt_plugin_register_component_classes);\
-       BT_PLUGIN_EXIT(NULL);
 
 #endif /* BABELTRACE_PLUGIN_H */
This page took 0.025815 seconds and 4 git commands to generate.