diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-01-30 12:34:04 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-01-30 12:34:04 +0000 |
commit | 79f0081b0a50ab59794827dd5af79f8671870fcd (patch) | |
tree | f284178ed89e37c85043c41f2b256eb4e89f4792 /mission-control-plugins/loader.c | |
parent | 0e2b32c64568c39a9bbcc556f5ee1a3cae811928 (diff) | |
parent | 0b2293f16df6259d2f2aab1db1fc126c2edae59e (diff) |
Merge branch 'account-rework-27727-round4'
Reviewed-by: Xavier Claessens <xavier.claessens@collabora.co.uk>
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=27727
Diffstat (limited to 'mission-control-plugins/loader.c')
-rw-r--r-- | mission-control-plugins/loader.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mission-control-plugins/loader.c b/mission-control-plugins/loader.c index 640d1d87..a23028b3 100644 --- a/mission-control-plugins/loader.c +++ b/mission-control-plugins/loader.c @@ -62,6 +62,21 @@ static gboolean debugging = FALSE; #endif /** + * MCP_API_VERSION_5_18: + * + * Defined to allow simple plugin implementations to support both Mission + * Control 5.16 and 5.18 plugin APIs: + * + * |[ + * #ifdef MCP_API_VERSION_5_18 + * ... // implement MC 5.18 API + * #else + * ... // implement MC 5.16 API + * #endif + * ]| + */ + +/** * mcp_set_debug: * @debug: whether to log debug output * |