summaryrefslogtreecommitdiff
path: root/include/mailutils/mailer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mailutils/mailer.h')
-rw-r--r--include/mailutils/mailer.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/include/mailutils/mailer.h b/include/mailutils/mailer.h
index 2a24873a3..6a794ec84 100644
--- a/include/mailutils/mailer.h
+++ b/include/mailutils/mailer.h
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001, 2005 Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -29,33 +29,33 @@ extern "C" {
#define MAILER_FLAG_DEBUG_DATA 0x0001
/* A url of NULL will cause the default to be used. */
-extern int mailer_create __P ((mailer_t *, const char *url));
-extern void mailer_destroy __P ((mailer_t *));
-extern int mailer_open __P ((mailer_t, int flags));
-extern int mailer_close __P ((mailer_t));
-extern int mailer_send_message __P ((mailer_t, message_t, address_t from, address_t to));
+extern int mailer_create (mailer_t *, const char *url);
+extern void mailer_destroy (mailer_t *);
+extern int mailer_open (mailer_t, int flags);
+extern int mailer_close (mailer_t);
+extern int mailer_send_message (mailer_t, message_t, address_t from, address_t to);
/* Called to set or get the default mailer url. */
-extern int mailer_set_url_default __P ((const char* url));
-extern int mailer_get_url_default __P ((const char** url));
+extern int mailer_set_url_default (const char* url);
+extern int mailer_get_url_default (const char** url);
/* Accessor functions. */
-extern int mailer_get_property __P ((mailer_t, property_t *));
-extern int mailer_get_stream __P ((mailer_t, stream_t *));
-extern int mailer_set_stream __P ((mailer_t, stream_t));
-extern int mailer_get_debug __P ((mailer_t, mu_debug_t *));
-extern int mailer_set_debug __P ((mailer_t, mu_debug_t));
-extern int mailer_get_observable __P ((mailer_t, observable_t *));
-extern int mailer_get_url __P ((mailer_t, url_t *));
+extern int mailer_get_property (mailer_t, property_t *);
+extern int mailer_get_stream (mailer_t, stream_t *);
+extern int mailer_set_stream (mailer_t, stream_t);
+extern int mailer_get_debug (mailer_t, mu_debug_t *);
+extern int mailer_set_debug (mailer_t, mu_debug_t);
+extern int mailer_get_observable (mailer_t, observable_t *);
+extern int mailer_get_url (mailer_t, url_t *);
/* Utility functions, primarily for use of implementing concrete mailers. */
/* A valid from address_t contains a single address that has a qualified
email address. */
-extern int mailer_check_from __P((address_t from));
+extern int mailer_check_from (address_t from);
/* A valid to address_t contains 1 or more addresses, that are
qualified email addresses. */
-extern int mailer_check_to __P((address_t to));
+extern int mailer_check_to (address_t to);
#ifdef __cplusplus
}

Return to:

Send suggestions and report system problems to the System administrator.