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
f3069333
Commit
f3069333
authored
Jul 31, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Jul 31, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sxs: Use inline wrappers for calling COM methods.
parent
97512d70
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
2 deletions
+4
-2
Makefile.in
dlls/sxs/Makefile.in
+1
-0
cache.c
dlls/sxs/cache.c
+1
-1
name.c
dlls/sxs/name.c
+1
-1
Makefile.in
dlls/sxs/tests/Makefile.in
+1
-0
No files found.
dlls/sxs/Makefile.in
View file @
f3069333
MODULE
=
sxs.dll
MODULE
=
sxs.dll
IMPORTS
=
oleaut32 ole32
IMPORTS
=
oleaut32 ole32
IMPORTLIB
=
sxs
IMPORTLIB
=
sxs
EXTRADEFS
=
-DWIDL_C_INLINE_WRAPPERS
C_SRCS
=
\
C_SRCS
=
\
cache.c
\
cache.c
\
...
...
dlls/sxs/cache.c
View file @
f3069333
...
@@ -69,7 +69,7 @@ static HRESULT WINAPI cache_QueryInterface(
...
@@ -69,7 +69,7 @@ static HRESULT WINAPI cache_QueryInterface(
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IAssemblyCache
))
IsEqualIID
(
riid
,
&
IID_IAssemblyCache
))
{
{
I
Unknown
_AddRef
(
iface
);
I
AssemblyCache
_AddRef
(
iface
);
*
obj
=
cache
;
*
obj
=
cache
;
return
S_OK
;
return
S_OK
;
}
}
...
...
dlls/sxs/name.c
View file @
f3069333
...
@@ -68,7 +68,7 @@ static HRESULT WINAPI name_QueryInterface(
...
@@ -68,7 +68,7 @@ static HRESULT WINAPI name_QueryInterface(
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IAssemblyName
))
IsEqualIID
(
riid
,
&
IID_IAssemblyName
))
{
{
I
Unknown
_AddRef
(
iface
);
I
AssemblyName
_AddRef
(
iface
);
*
obj
=
name
;
*
obj
=
name
;
return
S_OK
;
return
S_OK
;
}
}
...
...
dlls/sxs/tests/Makefile.in
View file @
f3069333
TESTDLL
=
sxs.dll
TESTDLL
=
sxs.dll
IMPORTS
=
sxs
IMPORTS
=
sxs
EXTRADEFS
=
-DWIDL_C_INLINE_WRAPPERS
C_SRCS
=
\
C_SRCS
=
\
cache.c
\
cache.c
\
...
...
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