summaryrefslogtreecommitdiff
path: root/content/content.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-04-19 11:07:42 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-04-19 11:07:42 +0000
commitdc85ddb0a82af725d843ecce7fb0183b7fd05352 (patch)
tree7887836411a6a7be8e523ef0b71a31ac062f270f /content/content.h
parent60c90f89b8e24c9e21703a0b0942642e22325acc (diff)
downloadnetsurf-dc85ddb0a82af725d843ecce7fb0183b7fd05352.tar.gz
netsurf-dc85ddb0a82af725d843ecce7fb0183b7fd05352.tar.bz2
Launch redirects to unsupported URLs in other applications.
svn path=/trunk/netsurf/; revision=4098
Diffstat (limited to 'content/content.h')
-rw-r--r--content/content.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/content/content.h b/content/content.h
index 5e130e138..f2f3f4de2 100644
--- a/content/content.h
+++ b/content/content.h
@@ -89,6 +89,7 @@ typedef enum {
CONTENT_MSG_REDRAW, /**< needs redraw (eg. new animation frame) */
CONTENT_MSG_NEWPTR, /**< structure has been replaced */
CONTENT_MSG_REFRESH, /**< wants refresh */
+ CONTENT_MSG_LAUNCH, /**< needs url launching in external program */
#ifdef WITH_AUTH
CONTENT_MSG_AUTH, /**< authentication required */
#endif
@@ -117,6 +118,7 @@ union content_msg_data {
} redraw;
const char *auth_realm; /**< Realm, for CONTENT_MSG_AUTH. */
int delay; /**< Minimum delay, for CONTENT_MSG_REFRESH */
+ const char *launch_url; /**< URL to launch, for CONTENT_MSG_LAUNCH */
struct {
/** Certificate chain (certs[0] == server) */
const struct ssl_cert_info *certs;