Skip to content

Commit

Permalink
changed CLSIDfromProgId to CLSIDfromString
Browse files Browse the repository at this point in the history
  • Loading branch information
Harald Radi committed Jun 28, 2001
1 parent a98efcd commit 851d401
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/com/COM.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion ext/rpc/com/com_wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 851d401

Please sign in to comment.