diff options
Diffstat (limited to 'ext/standard/file.h')
-rw-r--r-- | ext/standard/file.h | 24 |
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); |