diff options
| author | Daniel Beulshausen <dbeu@php.net> | 2001-06-11 15:18:44 +0000 |
|---|---|---|
| committer | Daniel Beulshausen <dbeu@php.net> | 2001-06-11 15:18:44 +0000 |
| commit | 491fcd2ef89b1534e1820aa742bfcce749cab534 (patch) | |
| tree | b48286da8c17a9b58c8d9b87385b0ef044b69be0 | |
| parent | c6b4e558387aae58d1bff9c61fe274fb570a904c (diff) | |
| download | php-git-491fcd2ef89b1534e1820aa742bfcce749cab534.tar.gz | |
used in extension(s) as well
| -rw-r--r-- | ext/standard/mail.c | 2 | ||||
| -rw-r--r-- | ext/standard/php_mail.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/mail.c b/ext/standard/mail.c index 67a2160028..652febfced 100644 --- a/ext/standard/mail.c +++ b/ext/standard/mail.c @@ -132,7 +132,7 @@ PHP_FUNCTION(mail) /* {{{ php_mail */ -int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd) +PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd) { #ifdef PHP_WIN32 int tsm_err; diff --git a/ext/standard/php_mail.h b/ext/standard/php_mail.h index 330482c202..5e5a0e54ca 100644 --- a/ext/standard/php_mail.h +++ b/ext/standard/php_mail.h @@ -26,7 +26,7 @@ PHP_FUNCTION(mail); PHP_FUNCTION(ezmlm_hash); PHP_MINFO_FUNCTION(mail); -extern int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd); +PHPAPI extern int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd); #endif |
