diff options
author | Zeev Suraski <zeev@php.net> | 1999-04-26 14:00:49 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-04-26 14:00:49 +0000 |
commit | 7942eaf38138ef8751a447dadb930a129528fb6b (patch) | |
tree | cee4b5eca81082809a9e5bb903173952f45e9501 /main/fopen_wrappers.h | |
parent | 050cb7cfe3da61621b6d01a0b013642543f44521 (diff) | |
download | php-git-7942eaf38138ef8751a447dadb930a129528fb6b.tar.gz |
* Plenty of thread safety and Win32 work.
* Changed PHP4 to compile as a DLL, both ISAPI and the the CGI run with the same DLL.
* Switched to using the DLL runtime library under Win32. PHP will NOT work if
compiled against the static library!
* Removed yesterday's php4libts project (with php4dllts, it's obsolete).
This *does* affect thread-unsafe Windows as well - the thread unsafe CGI is also
dependant on the thread-unsafe DLL.
Diffstat (limited to 'main/fopen_wrappers.h')
-rw-r--r-- | main/fopen_wrappers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/fopen_wrappers.h b/main/fopen_wrappers.h index 0b3834a1e3..c1e1420b3c 100644 --- a/main/fopen_wrappers.h +++ b/main/fopen_wrappers.h @@ -69,7 +69,7 @@ extern int wsa_fp; /* a list for open sockets */ extern PHPAPI FILE *php3_fopen_wrapper(char *filename, char *mode, int options, int *issock, int *socketd); -extern FILE *php3_fopen_for_parser(void); +PHPAPI FILE *php3_fopen_for_parser(void); extern PHPAPI int _php3_check_open_basedir(char *path); |