diff options
author | Wez Furlong <wez@php.net> | 2003-08-14 20:31:38 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-08-14 20:31:38 +0000 |
commit | 61313924a476aeaf498621d4797c276cf4592f12 (patch) | |
tree | 3b3478a943bca5985b1f55fdc282ddf5d72f494c /ext/com_dotnet/com_dotnet.c | |
parent | b5cb1cbadb0975c0261ff9263a3d9df36a2cfab9 (diff) | |
download | php-git-61313924a476aeaf498621d4797c276cf4592f12.tar.gz |
fix .net build
Diffstat (limited to 'ext/com_dotnet/com_dotnet.c')
-rw-r--r-- | ext/com_dotnet/com_dotnet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/com_dotnet/com_dotnet.c b/ext/com_dotnet/com_dotnet.c index 7d367ad6f8..a30237dd69 100644 --- a/ext/com_dotnet/com_dotnet.c +++ b/ext/com_dotnet/com_dotnet.c @@ -109,7 +109,7 @@ PHP_FUNCTION(com_dotnet_create_instance) if (COMG(dotnet_runtime_stuff) == NULL) { if (FAILURE == dotnet_init(TSRMLS_C)) { - com_throw_exception("Failed to initialize .Net runtime" TSRMLS_CC); + php_com_throw_exception("Failed to initialize .Net runtime" TSRMLS_CC); ZVAL_NULL(object); return; } @@ -123,7 +123,7 @@ PHP_FUNCTION(com_dotnet_create_instance) &assembly_name, &assembly_name_len, &datatype_name, &datatype_name_len, &obj->code_page)) { - com_throw_exception("Could not create .Net object - invalid arguments!" TSRMLS_CC); + php_com_throw_exception("Could not create .Net object - invalid arguments!" TSRMLS_CC); ZVAL_NULL(object); return; } @@ -171,7 +171,7 @@ PHP_FUNCTION(com_dotnet_create_instance) VariantClear(&vargs[1]); if (ret == FAILURE) { - com_throw_exception("Failed to instantiate .Net object" TSRMLS_CC); + php_com_throw_exception("Failed to instantiate .Net object" TSRMLS_CC); ZVAL_NULL(object); return; } |