summaryrefslogtreecommitdiff
path: root/ext/standard/file.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2002-04-05 11:51:43 +0000
committerZeev Suraski <zeev@php.net>2002-04-05 11:51:43 +0000
commit385b233040e2fb7d0f095aee561ff4e2e76dde11 (patch)
tree9dca23c6d525d08ffdc517b5ffa2daf5b3c79595 /ext/standard/file.h
parent1abb9cd02c180bbf9550620daeb5f6dc05084cfd (diff)
downloadphp-git-385b233040e2fb7d0f095aee561ff4e2e76dde11.tar.gz
Fix gzip/bz2 builds for Windows
Diffstat (limited to 'ext/standard/file.h')
-rw-r--r--ext/standard/file.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/ext/standard/file.h b/ext/standard/file.h
index 4770f888b8..6d08e31ad9 100644
--- a/ext/standard/file.h
+++ b/ext/standard/file.h
@@ -29,24 +29,24 @@ PHP_MSHUTDOWN_FUNCTION(file);
PHP_FUNCTION(tempnam);
PHP_NAMED_FUNCTION(php_if_tmpfile);
PHP_NAMED_FUNCTION(php_if_fopen);
-PHP_FUNCTION(fclose);
+PHPAPI PHP_FUNCTION(fclose);
PHP_FUNCTION(popen);
PHP_FUNCTION(pclose);
-PHP_FUNCTION(feof);
-PHP_FUNCTION(fread);
-PHP_FUNCTION(fgetc);
-PHP_FUNCTION(fgets);
+PHPAPI PHP_FUNCTION(feof);
+PHPAPI PHP_FUNCTION(fread);
+PHPAPI PHP_FUNCTION(fgetc);
+PHPAPI PHP_FUNCTION(fgets);
PHP_FUNCTION(fscanf);
-PHP_FUNCTION(fgetss);
+PHPAPI PHP_FUNCTION(fgetss);
PHP_FUNCTION(fgetcsv);
-PHP_FUNCTION(fwrite);
-PHP_FUNCTION(fflush);
-PHP_FUNCTION(rewind);
-PHP_FUNCTION(ftell);
-PHP_FUNCTION(fseek);
+PHPAPI PHP_FUNCTION(fwrite);
+PHPAPI PHP_FUNCTION(fflush);
+PHPAPI PHP_FUNCTION(rewind);
+PHPAPI PHP_FUNCTION(ftell);
+PHPAPI PHP_FUNCTION(fseek);
PHP_FUNCTION(mkdir);
PHP_FUNCTION(rmdir);
-PHP_FUNCTION(fpassthru);
+PHPAPI PHP_FUNCTION(fpassthru);
PHP_FUNCTION(readfile);
PHP_FUNCTION(umask);
PHP_FUNCTION(rename);