diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/html.c | 6 | ||||
-rw-r--r-- | src/html.h | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -690,3 +690,9 @@ mq_html_input_select(const gchar *name, const gchar *label, return select; } + +gchar * +mq_html_input_iframe(const gchar *src) +{ + return g_strdup_printf("<iframe src=\"%s\"></iframe>", src); +} @@ -82,4 +82,7 @@ mq_html_input_select(const gchar *name, const gchar *label, GDestroyNotify destroy_value, GDestroyNotify destroy_label, ...) G_GNUC_NULL_TERMINATED; +gchar * +mq_html_input_iframe(const gchar *src); + #endif |