Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a23a1b3f
Commit
a23a1b3f
authored
Nov 15, 1998
by
Gavriel State
Committed by
Alexandre Julliard
Nov 15, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stubs for GetRunningObjectTable32 and OleRegGetUserType.
parent
28e226b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
ole2.c
ole/ole2.c
+22
-0
ole32.spec
relay32/ole32.spec
+2
-2
No files found.
ole/ole2.c
View file @
a23a1b3f
...
...
@@ -9,6 +9,7 @@
#include "ole2.h"
#include "process.h"
#include "debug.h"
#include "compobj.h"
/******************************************************************************
* OleBuildVersion [OLE2.1]
...
...
@@ -93,6 +94,15 @@ HRESULT WINAPI GetRunningObjectTable16(DWORD reserved, LPVOID *pprot) {
return
E_FAIL
;
}
/***********************************************************************
* GetRunningObjectTable32 (OLE2.73)
*/
HRESULT
WINAPI
GetRunningObjectTable32
(
DWORD
reserved
,
LPVOID
*
pprot
)
{
FIXME
(
ole
,
"(%ld,%p),stub!
\n
"
,
reserved
,
pprot
);
return
E_FAIL
;
}
/***********************************************************************
* RegisterDragDrop16 (OLE2.35)
*/
...
...
@@ -136,6 +146,18 @@ HRESULT WINAPI RevokeDragDrop32(
}
/***********************************************************************
* OleRegGetUserType (OLE32.122)
*/
HRESULT
WINAPI
OleRegGetUserType32
(
REFCLSID
clsid
,
DWORD
dwFormOfType
,
LPOLESTR32
*
pszUserType
)
{
FIXME
(
ole
,
",stub!
\n
"
);
return
S_OK
;
}
/***********************************************************************
* CreateBindCtx32 [OLE32.52]
*/
HRESULT
WINAPI
CreateBindCtx32
(
DWORD
reserved
,
LPVOID
*
ppbc
)
...
...
relay32/ole32.spec
View file @
a23a1b3f
...
...
@@ -73,7 +73,7 @@ type win32
70 stub GetHGlobalFromILockBytes
71 stub GetHGlobalFromStream
72 stub GetHookInterface
73 st
ub GetRunningObjectTable
73 st
dcall GetRunningObjectTable(long ptr) GetRunningObjectTable32
74 stub IIDFromString
75 stub IsAccelerator
76 stub IsEqualGUID
...
...
@@ -122,7 +122,7 @@ type win32
119 stub OleRegEnumFormatEtc
120 stub OleRegEnumVerbs
121 stub OleRegGetMiscStatus
122 st
ub OleRegGetUserType
122 st
dcall OleRegGetUserType(long long ptr) OleRegGetUserType32
123 stub OleRun
124 stub OleSave
125 stub OleSaveToStream
...
...
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