diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-12-06 18:13:04 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-12-06 18:13:04 +0100 |
commit | 61a7962866886dff93f29bee45007dbdac26199a (patch) | |
tree | c704a5dec2374cef22c1bb9aee9ac5dbfd27f61e /doc/plugin-api.txt | |
parent | 9e4b0435da1726aa58e39e350d3497097db2634f (diff) | |
download | connman-61a7962866886dff93f29bee45007dbdac26199a.tar.gz connman-61a7962866886dff93f29bee45007dbdac26199a.tar.bz2 connman-61a7962866886dff93f29bee45007dbdac26199a.zip |
Allow pre-processor pasting of plugin name
Diffstat (limited to 'doc/plugin-api.txt')
-rw-r--r-- | doc/plugin-api.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/plugin-api.txt b/doc/plugin-api.txt index baaea307..e329ced7 100644 --- a/doc/plugin-api.txt +++ b/doc/plugin-api.txt @@ -4,6 +4,7 @@ Plugin programming interface Plugin basics ============= + The Connection Manager supports plugins for various actions. The basic plugin contains of plugin description via CONNMAN_PLUGIN_DEFINE and also init/exit callbacks definied through that description. @@ -19,5 +20,5 @@ static void example_exit(void) { } -CONNMAN_PLUGIN_DEFINE("example", "Example plugin", VERSION, +CONNMAN_PLUGIN_DEFINE(example, "Example plugin", VERSION, example_init, example_exit) |