summaryrefslogtreecommitdiff
path: root/src/lib/elm_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elm_config.h')
-rw-r--r--src/lib/elm_config.h27
1 files changed, 26 insertions, 1 deletions
diff --git a/src/lib/elm_config.h b/src/lib/elm_config.h
index 746a171bb..0283dfca3 100644
--- a/src/lib/elm_config.h
+++ b/src/lib/elm_config.h
@@ -2079,6 +2079,31 @@ EAPI void elm_config_transition_duration_factor_set(double factor);
EAPI double elm_config_transition_duration_factor_get(void);
/**
- * @}
+ * Set the backend engine used by Elm_Web widget
+ *
+ * This function set the name of the external module used by
+ * elm_web to render web page.
+ *
+ * @param backend The new backend to use.
+ *
+ * @since 1.18
+ * @see elm_config_web_backend_get()
*/
+EAPI void elm_config_web_backend_set(const char *backend);
+/**
+ * Get the currently set backend engine used by Elm_Web widget
+ *
+ * This function get the name of the external module used by
+ * elm_web to render web page.
+ *
+ * @return The new backend to use.
+ *
+ * @since 1.18
+ * @see elm_config_web_backend_set()
+ */
+EAPI const char *elm_config_web_backend_get(void);
+
+/**
+ * @}
+ */