From: Harald Radi Date: Thu, 28 Jun 2001 21:26:20 +0000 (+0000) Subject: changed CLSIDfromProgId to CLSIDfromString X-Git-Tag: PRE_TSRM_MERGE_PATCH~317 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=851d401e230dbe95b25725867eaca7235547d624;p=php changed CLSIDfromProgId to CLSIDfromString --- diff --git a/ext/com/COM.c b/ext/com/COM.c index 6bc04d922d..8b98d05b95 100644 --- a/ext/com/COM.c +++ b/ext/com/COM.c @@ -521,7 +521,7 @@ PHP_FUNCTION(com_load) obj = (comval *) emalloc(sizeof(comval)); /* obtain CLSID */ - if(FAILED(CLSIDFromProgID(ProgID, &clsid))) + if(FAILED(CLSIDFromString(ProgID, &clsid))) { /* Perhaps this is a Moniker? */ IBindCtx *pBindCtx; diff --git a/ext/rpc/com/com_wrapper.c b/ext/rpc/com/com_wrapper.c index 6bc04d922d..8b98d05b95 100644 --- a/ext/rpc/com/com_wrapper.c +++ b/ext/rpc/com/com_wrapper.c @@ -521,7 +521,7 @@ PHP_FUNCTION(com_load) obj = (comval *) emalloc(sizeof(comval)); /* obtain CLSID */ - if(FAILED(CLSIDFromProgID(ProgID, &clsid))) + if(FAILED(CLSIDFromString(ProgID, &clsid))) { /* Perhaps this is a Moniker? */ IBindCtx *pBindCtx;