summary refs log tree commit diff stats
path: root/tests/generics/tcan_inherit_generic.nim
Commit message (Expand)AuthorAgeFilesLines
* preparations for more Nimble packages; clear licensing; fixes #2949Araq2015-06-201-2/+1
* further adaptationsAraq2014-08-291-1/+1
* new tester; all tests categorizedAraq2014-01-131-0/+17
'#n60'>60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
/*
 * $LynxId: LYMail.h,v 1.17 2011/06/02 10:37:23 tom Exp $
 */
#ifndef LYMAIL_H
#define LYMAIL_H

#ifndef LYSTRUCTS_H
#include <LYStructs.h>
#endif /* LYSTRUCTS_H */

#ifdef __cplusplus
extern "C" {
#endif

#ifdef SH_EX
#undef USE_BLAT_MAILER
#define USE_BLAT_MAILER 1
#endif

#ifndef USE_ALT_BLAT_MAILER
#define USE_ALT_BLAT_MAILER 0
#endif

#ifndef USE_BLAT_MAILER
#define USE_BLAT_MAILER 0
#endif

#ifndef ALTBLAT_MAIL_FLAGS
#define ALTBLAT_MAIL_FLAGS ""
#endif

#ifndef BLAT_MAIL_FLAGS
#define BLAT_MAIL_FLAGS ""
#endif

#ifdef VMS
#define USE_VMS_MAILER 1
#else
#define USE_VMS_MAILER 0
#endif

#ifndef SYSTEM_MAIL
#define SYSTEM_MAIL "sendmail"
#endif

#ifndef SYSTEM_MAIL_FLAGS
#define SYSTEM_MAIL_FLAGS ""
#endif

/*
 * Ifdef's in case we have a working popen/pclose, useful for piping to the
 * mail program.
 */
#ifndef CAN_PIPE_TO_MAILER
#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
#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 */