changed CLSIDfromProgId to CLSIDfromString

This commit is contained in:
Harald Radi 2001-06-28 21:26:20 +00:00
parent a98efcda76
commit 851d401e23
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;