diff options
author | Ito Hiroyuki <ZXB01226@nifty.com> | 2010-08-20 09:47:09 +0000 |
---|---|---|
committer | Ito Hiroyuki <ZXB01226@nifty.com> | 2010-08-20 09:47:09 +0000 |
commit | 4f9d8accb7503cae4720550aa4a01ee6e5340022 (patch) | |
tree | eb321d3d04e39ef6f6270cf9a255a37a2466476c /fm.h | |
parent | exit code is 1 when an error is occured (diff) | |
download | w3m-4f9d8accb7503cae4720550aa4a01ee6e5340022.tar.gz w3m-4f9d8accb7503cae4720550aa4a01ee6e5340022.zip |
Introduce option mailto_options
Diffstat (limited to '')
-rw-r--r-- | fm.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: fm.h,v 1.148 2010/08/08 09:53:42 htrb Exp $ */ +/* $Id: fm.h,v 1.149 2010/08/20 09:47:09 htrb Exp $ */ /* * w3m: WWW wo Miru utility * @@ -959,6 +959,12 @@ global char *Mailer init(NULL); #else global char *Mailer init(DEF_MAILER); #endif +#ifdef USE_W3MMAILER +#define MAILTO_OPTIONS_USE_W3MMAILER 0 +#endif +#define MAILTO_OPTIONS_IGNORE 1 +#define MAILTO_OPTIONS_USE_MAILTO_URL 2 +global int MailtoOptions init(MAILTO_OPTIONS_IGNORE); global char *ExtBrowser init(DEF_EXT_BROWSER); global char *ExtBrowser2 init(NULL); global char *ExtBrowser3 init(NULL); |