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
cfc6c489
Commit
cfc6c489
authored
Jun 10, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Make the virtual table functions static where possible.
parent
ae525c14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
tmarshal.c
dlls/oleaut32/tmarshal.c
+3
-3
No files found.
dlls/oleaut32/tmarshal.c
View file @
cfc6c489
...
...
@@ -1386,7 +1386,7 @@ exit:
return
hres
;
}
HRESULT
WINAPI
ProxyIUnknown_QueryInterface
(
IUnknown
*
iface
,
REFIID
riid
,
void
**
ppv
)
static
HRESULT
WINAPI
ProxyIUnknown_QueryInterface
(
IUnknown
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
TMProxyImpl
*
proxy
=
(
TMProxyImpl
*
)
iface
;
...
...
@@ -1399,7 +1399,7 @@ HRESULT WINAPI ProxyIUnknown_QueryInterface(IUnknown *iface, REFIID riid, void *
return
E_NOINTERFACE
;
}
ULONG
WINAPI
ProxyIUnknown_AddRef
(
IUnknown
*
iface
)
static
ULONG
WINAPI
ProxyIUnknown_AddRef
(
IUnknown
*
iface
)
{
TMProxyImpl
*
proxy
=
(
TMProxyImpl
*
)
iface
;
...
...
@@ -1411,7 +1411,7 @@ ULONG WINAPI ProxyIUnknown_AddRef(IUnknown *iface)
return
2
;
/* FIXME */
}
ULONG
WINAPI
ProxyIUnknown_Release
(
IUnknown
*
iface
)
static
ULONG
WINAPI
ProxyIUnknown_Release
(
IUnknown
*
iface
)
{
TMProxyImpl
*
proxy
=
(
TMProxyImpl
*
)
iface
;
...
...
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