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
84e2d6ba
Commit
84e2d6ba
authored
Oct 13, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Oct 13, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for RevokeActiveObject, GetActiveObject, fixed
RegisterActiveObject stub argtypes.
parent
e14deffd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
5 deletions
+30
-5
oleaut.c
dlls/oleaut32/oleaut.c
+27
-2
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+3
-3
No files found.
dlls/oleaut32/oleaut.c
View file @
84e2d6ba
...
...
@@ -13,8 +13,33 @@
DEFAULT_DEBUG_CHANNEL
(
ole
)
HRESULT
WINAPI
RegisterActiveObject
(
DWORD
x1
,
DWORD
x2
,
DWORD
x3
,
DWORD
x4
)
HRESULT
WINAPI
RegisterActiveObject
(
LPUNKNOWN
punk
,
REFCLSID
rcid
,
DWORD
dwFlags
,
LPDWORD
pdwRegister
)
{
char
buf
[
80
];
if
(
rcid
)
WINE_StringFromCLSID
(
rcid
,
buf
);
else
sprintf
(
buf
,
"<clsid-%p>"
,
rcid
);
FIXME
(
"(%p,%s,0x%08lx,%p), stub!
\n
"
,
punk
,
buf
,
dwFlags
,
pdwRegister
);
return
E_FAIL
;
}
HRESULT
WINAPI
RevokeActiveObject
(
DWORD
xregister
,
LPVOID
reserved
)
{
FIXME
(
"(0x%08lx,0x%08lx,0x%08lx,0x%08lx), stub!
\n
"
,
x1
,
x2
,
x3
,
x4
);
FIXME
(
"(0x%08lx,%p),stub!
\n
"
,
xregister
,
reserved
);
return
E_FAIL
;
}
HRESULT
WINAPI
GetActiveObject
(
REFCLSID
rcid
,
LPVOID
preserved
,
LPUNKNOWN
*
ppunk
)
{
char
buf
[
80
];
if
(
rcid
)
WINE_StringFromCLSID
(
rcid
,
buf
);
else
sprintf
(
buf
,
"<clsid-%p>"
,
rcid
);
FIXME
(
"(%s,%p,%p),stub!
\n
"
,
buf
,
preserved
,
ppunk
);
return
E_FAIL
;
}
dlls/oleaut32/oleaut32.spec
View file @
84e2d6ba
...
...
@@ -33,9 +33,9 @@ type win32
30 stub DispInvoke
31 stub CreateDispTypeInfo
32 stub CreateStdDispatch
33 stdcall RegisterActiveObject(
long long long long
) RegisterActiveObject
34 st
ub
RevokeActiveObject
35 st
ub
GetActiveObject
33 stdcall RegisterActiveObject(
ptr ptr long ptr
) RegisterActiveObject
34 st
dcall RevokeActiveObject(long ptr)
RevokeActiveObject
35 st
dcall GetActiveObject(ptr ptr ptr)
GetActiveObject
36 stdcall SafeArrayAllocDescriptor(long ptr) SafeArrayAllocDescriptor
37 stdcall SafeArrayAllocData(ptr) SafeArrayAllocData
38 stdcall SafeArrayDestroyDescriptor(ptr) SafeArrayDestroyDescriptor
...
...
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