static void php_set_timeout(long seconds)
{
-#if WIN32|WINNT
+#if PHP_WIN32
#else
# ifdef HAVE_SETITIMER
struct itimerval t_r; /* timeout requested */
static void php_unset_timeout(void)
{
-#if WIN32|WINNT
+#if PHP_WIN32
#else
# ifdef HAVE_SETITIMER
struct itimerval no_timeout;
snprintf(memory_leak_buf, 512, "Last leak repeated %ld time%s\n", leak_count, (leak_count>1?"s":""));
}
-# if WIN32||WINNT
+# if PHP_WIN32
OutputDebugString(memory_leak_buf);
# else
fprintf(stderr, memory_leak_buf);
php_core_globals *core_globals;
sapi_globals_struct *sapi_globals = ts_resource(sapi_globals_id);
#endif
-#if (WIN32|WINNT) && !(USE_SAPI)
+#if (PHP_WIN32) && !(USE_SAPI)
WORD wVersionRequested = MAKEWORD(2, 0);
WSADATA wsaData;
#endif
-#if WIN32|WINNT
+#if PHP_WIN32
{
DWORD dwVersion = GetVersion();
setlocale(LC_CTYPE, "");
#endif
-#if (WIN32|WINNT) && !(USE_SAPI)
+#if (PHP_WIN32) && !(USE_SAPI)
/* start up winsock services */
if (WSAStartup(wVersionRequested, &wsaData) != 0) {
php_printf("\nwinsock.dll unusable. %d\n", WSAGetLastError());
/* close down the ini config */
php_config_ini_shutdown();
-#if (WIN32|WINNT)
+#if (PHP_WIN32)
/*close winsock */
WSACleanup();
#endif
return;
}
-#if WIN32||WINNT
+#if PHP_WIN32
UpdateIniFromRegistry(primary_file->filename);
#endif
}
}
-#if WIN32||WINNT
+#if PHP_WIN32
/* just so that this symbol gets exported... */
PHPAPI void dummy_indent()
{