php-src/win32
Kalle Sommer Nielsen 36b050c2c5 Get rid of these slow calls to LoadLibrary()/GetProcAddress() calls on Windows, we require Windows Vista as bare minimum for PHP anyway, so it does not make any sense to do this slow emulation anyway.
GD:
 - PrintWindow() is available as of Windows XP, it requires linking to User32.lib, which config.w32 for ext/gd already.

CLI:
 - The borrowed functions from PostgreSQL to set the titles of the console window uses SetConsoleTitle() and GetConsoleTitle(), both are available as of Windows 2000 from Kernel32.lib which we already are linking against.

Standard:
 - The disk space utility functions uses GetDiskFreeSpaceExA() which is available as of Windows XP, again links to Kernel32.lib.
 - The symlink() PHP function uses CreateSymbolicLinkA() which is available from Windows Vista, again from Kernel32.lib.
 - php_get_windows_name() in info.c uses GetNativeSystemInfo() which is available as of Windows XP and GetProductInfo() which is available as of Windows Vista, both are again from Kernel32.lib.

Notes:
 - ext/interbase & ext/pdo_firebird uses GetProcAddress(), I'm not entirely sure how to handle this one.
 - ext/sqlite3, this is apart of the bundled libsqlite3, I don't really wanna play around with our bundled libs and make it a bigger issue for those who maintain and upgrade them.
 - ext/readline, the call to GetProcAddress() here does not do any system calls, so it is left as is.
 - win32/ioutil.c uses GetProcAddress(), but the function it attempts to load (PathCchCanonicalizeEx()) is only available from Windows 8 and greater (Pathcch.lib linkage).
 - win32/time.c uses GetSystemTimePreciseAsFileTime() which is available from Windows 8 and greater to get the current system date and time which the highest possible precision and falls back to GetSystemTimeAsFileTime() (available as of Windows 2000), again Kernel32.lib, the GetSystemTimePreciseAsFileTime() is left in a GetProcAddress().
2016-08-11 02:09:50 +02:00
..
build Added a warning in case --with-mp is combined with --enable-debug 2016-08-06 11:00:22 +02:00
builddef.bat
codepage.c check malloc result 2016-08-08 10:33:07 +02:00
codepage.h correct macro names 2016-07-17 12:33:26 +02:00
cp_enc_map_gen.c Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
cp_enc_map.c Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
dllmain.c Fixed bug #72625 realpath() fails on non canonical long path 2016-07-23 21:11:27 +02:00
fnmatch.c add vim modelines 2015-05-20 19:14:05 +02:00
fnmatch.h
ftok.c Happy new year (Update copyright to 2016) 2016-01-01 20:06:12 +02:00
getrusage.c Happy new year (Update copyright to 2016) 2016-01-01 20:03:16 +02:00
getrusage.h Happy new year (Update copyright to 2016) 2016-01-01 20:03:16 +02:00
glob.c cleanup more redundant S_IS* declarations 2015-05-25 18:03:26 +02:00
glob.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
globals.c Merge branch 'PHP-5.6' into PHP-7.0 2016-01-01 19:48:25 +02:00
grp.h Merge branch 'PHP-5.6' into PHP-7.0 2016-01-01 19:48:25 +02:00
inet.c Happy new year (Update copyright to 2016) 2016-01-01 20:03:16 +02:00
inet.h Happy new year (Update copyright to 2016) 2016-01-01 20:03:16 +02:00
install.txt Merge branch 'PHP-5.6' 2015-08-18 21:26:09 +02:00
ioutil.c fix and improve the ioutil cwd routine for nts 2016-07-29 02:41:00 +02:00
ioutil.h Fixed compiler warning (Sorry Anatol, but this one was killing me) 2016-08-03 06:16:48 +02:00
ipc.h Happy new year (Update copyright to 2016) 2016-01-01 20:06:12 +02:00
param.h Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
php7dllts.rc Replaces php5 with php7, without whitespace changes. 2014-09-20 10:01:44 +02:00
php7dllts.rc2 Replaces php5 with php7, without whitespace changes. 2014-09-20 10:01:44 +02:00
php7ts_cli.rc Replaces php5 with php7, without whitespace changes. 2014-09-20 10:01:44 +02:00
php7ts_cli.rc2 Replaces php5 with php7, without whitespace changes. 2014-09-20 10:01:44 +02:00
php7ts.rc Replaces php5 with php7, without whitespace changes. 2014-09-20 10:01:44 +02:00
php7ts.rc2 Replaces php5 with php7, without whitespace changes. 2014-09-20 10:01:44 +02:00
php_inttypes.h rather use the supplied inttypes.h with vc14 2015-10-23 09:47:00 +02:00
php_registry.h Happy new year (Update copyright to 2016) 2016-01-01 20:03:16 +02:00
php_stdbool.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
php_stdint.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
php_win32_globals.h Merge branch 'PHP-5.6' into PHP-7.0 2016-01-01 19:48:25 +02:00
readdir.c Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
readdir.h Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
registry.c Happy new year (Update copyright to 2016) 2016-01-01 20:03:16 +02:00
resource.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
select.c Merge branch 'PHP-5.6' into PHP-7.0 2016-01-01 19:48:25 +02:00
select.h Merge branch 'PHP-5.6' into PHP-7.0 2016-01-01 19:48:25 +02:00
sendmail.c Fix bug #70145 From field incorrectly parsed from headers 2015-08-19 11:05:35 +02:00
sendmail.h trailing whitespace removal 2015-01-10 15:07:38 -08:00
signal.h remove version check 2015-05-15 08:20:33 +02:00
sockets.c Merge branch 'PHP-5.6' into PHP-7.0 2016-01-01 19:48:25 +02:00
sockets.h Merge branch 'PHP-5.6' into PHP-7.0 2016-01-01 19:48:25 +02:00
syslog.h Merge branch 'PHP-5.6' into PHP-7.0 2016-01-01 19:48:25 +02:00
syslog.reg Replaces php5 with php7, without whitespace changes. 2014-09-20 10:01:44 +02:00
time.c Get rid of these slow calls to LoadLibrary()/GetProcAddress() calls on Windows, we require Windows Vista as bare minimum for PHP anyway, so it does not make any sense to do this slow emulation anyway. 2016-08-11 02:09:50 +02:00
time.h introduced DllMain for the main php DLL 2015-06-02 15:56:32 +02:00
unistd.h
winutil.c add more errno handling 2016-07-29 15:05:41 +02:00
winutil.h Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
wsyslog.c add vim modelines 2015-05-20 19:14:05 +02:00