summaryrefslogtreecommitdiff
path: root/mission-control-plugins/loader.c
diff options
context:
space:
mode:
Diffstat (limited to 'mission-control-plugins/loader.c')
-rw-r--r--mission-control-plugins/loader.c15
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
*