Add an extra empty line
[framework/connectivity/connman.git] / doc / plugin-api.txt
1 Plugin programming interface
2 ****************************
3
4
5 Plugin basics
6 =============
7 The Connection Manager supports plugins for various actions. The basic plugin
8 contains of plugin description via CONNMAN_PLUGIN_DEFINE and also init/exit
9 callbacks definied through that description.
10
11 #include <connman/plugin.h>
12
13 static int example_init(void)
14 {
15         return 0;
16 }
17
18 static void example_exit(void)
19 {
20 }
21
22 CONNMAN_PLUGIN_DEFINE("example", "Example plugin", VERSION,
23                                                 example_init, example_exit)