Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
79ef449e
Commit
79ef449e
authored
May 07, 2013
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Add a semi-stub for CLSIDFromProgIDEx.
parent
d0ea3642
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
compobj.c
dlls/ole32/compobj.c
+9
-0
ole32.spec
dlls/ole32/ole32.spec
+1
-0
No files found.
dlls/ole32/compobj.c
View file @
79ef449e
...
...
@@ -2098,6 +2098,15 @@ HRESULT WINAPI CLSIDFromProgID(LPCOLESTR progid, LPCLSID clsid)
return
__CLSIDFromString
(
buf2
,
clsid
);
}
/******************************************************************************
* CLSIDFromProgIDEx [OLE32.@]
*/
HRESULT
WINAPI
CLSIDFromProgIDEx
(
LPCOLESTR
progid
,
LPCLSID
clsid
)
{
FIXME
(
"%s,%p: semi-stub
\n
"
,
debugstr_w
(
progid
),
clsid
);
return
CLSIDFromProgID
(
progid
,
clsid
);
}
/*****************************************************************************
* CoGetPSClsid [OLE32.@]
...
...
dlls/ole32/ole32.spec
View file @
79ef449e
...
...
@@ -4,6 +4,7 @@
@ stdcall CLIPFORMAT_UserSize(ptr long ptr)
@ stdcall CLIPFORMAT_UserUnmarshal(ptr ptr ptr)
@ stdcall CLSIDFromProgID(wstr ptr)
@ stdcall CLSIDFromProgIDEx(wstr ptr)
@ stdcall CLSIDFromString(wstr ptr)
@ stdcall CoAddRefServerProcess()
@ stdcall CoAllowSetForegroundWindow(ptr ptr)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment