about summary refs log tree commit diff stats
path: root/src/LYMail.h
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2010-04-29 22:00:22 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2010-04-29 22:00:22 -0400
commitdc748b1c47baadafae2c90f0e188927b11b7e029 (patch)
treec728869dc6504570b9bffb7459ccbdd1bf264a9f /src/LYMail.h
parentd4093cadbda3787dfb165954f8f6521790cfac86 (diff)
downloadlynx-snapshots-dc748b1c47baadafae2c90f0e188927b11b7e029.tar.gz
snapshot of project "lynx", label v2_8_8dev_6c
Diffstat (limited to 'src/LYMail.h')
-rw-r--r--src/LYMail.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/LYMail.h b/src/LYMail.h
deleted file mode 100644
index 7e58bbf7..00000000
--- a/src/LYMail.h
+++ /dev/null
@@ -1,56 +0,0 @@
-#ifndef LYMAIL_H
-#define LYMAIL_H
-
-#ifndef LYSTRUCTS_H
-#include <LYStructs.h>
-#endif /* LYSTRUCTS_H */
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-#ifdef SH_EX
-#define USE_BLAT_MAILER 1
-#else
-#define USE_BLAT_MAILER 0
-#endif
-#ifdef VMS
-#define USE_VMS_MAILER 1
-#else
-#define USE_VMS_MAILER 0
-#endif
-/*
- * Ifdef's in case we have a working popen/pclose, useful for piping to the
- * mail program.
- */
-#if !defined(HAVE_POPEN) || USE_VMS_MAILER || defined(DOSPATH) || defined(__CYGWIN__)
-#define CAN_PIPE_TO_MAILER 0
-#else
-#define CAN_PIPE_TO_MAILER 1
-#endif
-    extern BOOLEAN term_letter;
-
-    extern BOOLEAN LYSystemMail(void);
-    extern BOOLEAN LYMailPMDF(void);
-    extern FILE *LYPipeToMailer(void);
-    extern int LYSendMailFile(char *the_address,
-			      char *the_filename,
-			      char *the_subject,
-			      char *the_ccaddr,
-			      char *message);
-    extern void mailform(const char *mailto_address,
-			 const char *mailto_subject,
-			 const char *mailto_content,
-			 const char *mailto_type);
-    extern void mailmsg(int cur,
-			char *owner_address,
-			char *filename,
-			char *linkname);
-    extern void reply_by_mail(char *mail_address,
-			      char *filename,
-			      const char *title,
-			      const char *refid);
-
-#ifdef __cplusplus
-}
-#endif
-#endif				/* LYMAIL_H */
href='#n208'>208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237