diff options
author | Wez Furlong <wez@php.net> | 2003-03-02 13:09:48 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-03-02 13:09:48 +0000 |
commit | 6fed2e95b24073f76f92137c13b522753691375f (patch) | |
tree | 297b5ba1e5701e3064bf7be8e8ec0611a69a28b4 /sapi/activescript/scriptengine.cpp | |
parent | a8f97a48424453ac22446d3cacec6676531e2ddd (diff) | |
download | php-git-6fed2e95b24073f76f92137c13b522753691375f.tar.gz |
Fix build for activescript sapi
Diffstat (limited to 'sapi/activescript/scriptengine.cpp')
-rw-r--r-- | sapi/activescript/scriptengine.cpp | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/sapi/activescript/scriptengine.cpp b/sapi/activescript/scriptengine.cpp index e21e6afec4..61ca2d8f5f 100644 --- a/sapi/activescript/scriptengine.cpp +++ b/sapi/activescript/scriptengine.cpp @@ -43,7 +43,11 @@ extern "C" { #include "php_variables.h" #include "php_ini.h" #include "php4activescript.h" +#define PHP_COM_DONT_DECLARE_RPC_HANDLER 1 +#include "ext/rpc/php_rpc.h" +#include "ext/rpc/rpc_proxy.h" #include "ext/rpc/com/com.h" +#include "ext/rpc/com/com_wrapper.h" #include "ext/rpc/com/php_COM.h" #include "ext/rpc/com/conversion.h" } @@ -612,7 +616,7 @@ static int execute_code_fragment(code_frag *frag, if (retval_ptr) { if (varResult) - php_pval_to_variant(retval_ptr, varResult, CP_ACP TSRMLS_CC); + php_zval_to_variant(retval_ptr, varResult, CP_ACP); zval_ptr_dtor(&retval_ptr); } @@ -792,7 +796,7 @@ HRESULT TPHPScriptingEngine::engine_thread_handler(LONG msg, WPARAM wparam, LPAR if (SUCCEEDED(LoadRegTypeLib(*info->rguidTypeLib, (USHORT)info->dwMajor, (USHORT)info->dwMinor, LANG_NEUTRAL, &TypeLib))) { - php_COM_load_typelib(TypeLib, CONST_CS TSRMLS_CC); + php_COM_load_typelib(TypeLib, CONST_CS); TypeLib->Release(); } } @@ -1013,7 +1017,7 @@ HRESULT TPHPScriptingEngine::engine_thread_handler(LONG msg, WPARAM wparam, LPAR if (Z_TYPE_PP(tmp) == IS_OBJECT) { /* FIXME: if this causes an allocation (emalloc) and we are * not in the engine thread, things could get ugly!!! */ - disp = php_COM_export_object(*tmp TSRMLS_CC); + disp = php_COM_export_object(*tmp); } } @@ -1269,7 +1273,7 @@ void TPHPScriptingEngine::add_to_global_namespace(IDispatch *disp, DWORD flags, trace("Add %s to global namespace\n", name); - val = php_COM_object_from_dispatch(disp, NULL TSRMLS_CC); + val = php_COM_object_from_dispatch(disp); if (val == NULL) { disp->Release(); @@ -1312,7 +1316,7 @@ trace("Add %s to global namespace\n", name); if (SUCCEEDED(disp->Invoke(func->memid, IID_NULL, 0, func->invkind, &dispparams, &vres, NULL, NULL))) { - /* Get it's dispatch */ + /* Get its dispatch */ IDispatch *sub = NULL; if (V_VT(&vres) == VT_UNKNOWN) @@ -1321,12 +1325,12 @@ trace("Add %s to global namespace\n", name); sub = V_DISPATCH(&vres); if (sub) { - /* find out it's name */ + /* find out its name */ typ->GetDocumentation(func->memid, &funcname, NULL, NULL, NULL); - name = php_OLECHAR_to_char(funcname, &namelen, CP_ACP TSRMLS_CC); + name = php_OLECHAR_to_char(funcname, &namelen, CP_ACP, 0); /* add to namespace */ - zval *subval = php_COM_object_from_dispatch(sub, NULL TSRMLS_CC); + zval *subval = php_COM_object_from_dispatch(sub); if (subval) { ZEND_SET_SYMBOL(&EG(symbol_table), name, subval); } |