diff options
author | Thies C. Arntzen <thies@php.net> | 1999-09-22 15:16:19 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 1999-09-22 15:16:19 +0000 |
commit | 24c514312261aa2b8bf22205241a75a08b4d93dc (patch) | |
tree | bd07c5f65a83d7c72166361df2f6d4714ddb6763 /ext/oracle/oracle_hack.c | |
parent | 49c891f2cf3200fd83177b697b535f5ebc044f04 (diff) | |
download | php-git-24c514312261aa2b8bf22205241a75a08b4d93dc.tar.gz |
fixed Ora_PLogon (rewrote ora_do_logon using php_mysql.c)
oracle_hack.c should no longer be needed!
Diffstat (limited to 'ext/oracle/oracle_hack.c')
-rw-r--r-- | ext/oracle/oracle_hack.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/oracle/oracle_hack.c b/ext/oracle/oracle_hack.c deleted file mode 100644 index b3ec71bc77..0000000000 --- a/ext/oracle/oracle_hack.c +++ /dev/null @@ -1,24 +0,0 @@ -/* - This file needs to be compiled in with php on windows so that the - oracle dll will work (and can be compiled). preferably, I would - like to see if there is another way accomplish what needs to be - done with the symbol_table in ora_set_param_values() in oracle.c. - This is just a quick hack to get this out. - - Shane -*/ - -#include "php.h" - -PHPAPI HashTable *php3i_get_symbol_table(void) { - TLS_VARS; - return &GLOBAL(symbol_table); -} - -/* This is becoming a general callback file, rather than an oracle hack - * file. Seems we need the following now for xml. */ - -PHPAPI HashTable *php3i_get_function_table(void) { - TLS_VARS; - return &GLOBAL(function_table); -} |