]> granicus.if.org Git - php/commitdiff
removed conditional defines for load_data_infile_handlers on windows
authorGeorg Richter <georg@php.net>
Sun, 6 Jun 2004 08:52:19 +0000 (08:52 +0000)
committerGeorg Richter <georg@php.net>
Sun, 6 Jun 2004 08:52:19 +0000 (08:52 +0000)
(4.1.2 windows build is fixed now on mysql.com)

ext/mysqli/mysqli_api.c
ext/mysqli/mysqli_fe.c
ext/mysqli/php_mysqli.h

index fb5f6b0a6443fe5d03196f9522a9f3648aa57d25..95b6fe4d88f39b91a2213d2d6f920ba42e9f6798 100644 (file)
@@ -1042,7 +1042,6 @@ PHP_FUNCTION(mysqli_kill)
 }
 /* }}} */
 
-#ifndef PHP_WIN32
 /* {{{ proto mysqli_set_local_infile_default(object link)
    unsets user defined handler for load local infile command */
 PHP_FUNCTION(mysqli_set_local_infile_default)
@@ -1105,7 +1104,6 @@ PHP_FUNCTION(mysqli_set_local_infile_handler)
                                &php_local_infile_end, &php_local_infile_error, (void *)mysql); 
 }
 /* }}} */
-#endif
 
 /* {{{ proto bool mysqli_more_results(object link)
    check if there any more query results from a multi query */
index d6966408a24b022cac1ca1cfd008d94072a7c6ae..b3021dd7902dcbb408413feae61f0ee228c85ef4 100644 (file)
@@ -96,10 +96,8 @@ function_entry mysqli_functions[] = {
        PHP_FE(mysqli_info,                                                                     NULL)
        PHP_FE(mysqli_insert_id,                                                        NULL)
        PHP_FE(mysqli_kill,                                                                     NULL)
-#ifndef PHP_WIN32
        PHP_FE(mysqli_set_local_infile_default,                         NULL)
        PHP_FE(mysqli_set_local_infile_handler,                         NULL)
-#endif
        PHP_FE(mysqli_master_query,                                                     NULL)
        PHP_FE(mysqli_more_results,                                                     NULL)
        PHP_FE(mysqli_multi_query,                                                      NULL)
index 147a45a073d332262163674d974747c23e983389..5d19b0e7443a0d62b4ccab9da3b6b202c9663870 100644 (file)
@@ -310,10 +310,8 @@ PHP_FUNCTION(mysqli_info);
 PHP_FUNCTION(mysqli_insert_id);
 PHP_FUNCTION(mysqli_init);
 PHP_FUNCTION(mysqli_kill);
-#ifndef PHP_WIN32
 PHP_FUNCTION(mysqli_set_local_infile_default);
 PHP_FUNCTION(mysqli_set_local_infile_handler);
-#endif
 PHP_FUNCTION(mysqli_master_query);
 PHP_FUNCTION(mysqli_more_results);
 PHP_FUNCTION(mysqli_multi_query);