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
c42130f0
Commit
c42130f0
authored
Dec 02, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Make some functions static.
parent
33e0d161
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
olefont.c
dlls/oleaut32/olefont.c
+3
-3
typelib.c
dlls/oleaut32/typelib.c
+1
-1
No files found.
dlls/oleaut32/olefont.c
View file @
c42130f0
...
...
@@ -328,7 +328,7 @@ static void OLEFont_SendNotify(OLEFontImpl* this, DISPID dispID)
*
* See Windows documentation for more details on IUnknown methods.
*/
HRESULT
WINAPI
OLEFontImpl_QueryInterface
(
static
HRESULT
WINAPI
OLEFontImpl_QueryInterface
(
IFont
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
...
...
@@ -384,7 +384,7 @@ HRESULT WINAPI OLEFontImpl_QueryInterface(
*
* See Windows documentation for more details on IUnknown methods.
*/
ULONG
WINAPI
OLEFontImpl_AddRef
(
static
ULONG
WINAPI
OLEFontImpl_AddRef
(
IFont
*
iface
)
{
OLEFontImpl
*
this
=
(
OLEFontImpl
*
)
iface
;
...
...
@@ -397,7 +397,7 @@ ULONG WINAPI OLEFontImpl_AddRef(
*
* See Windows documentation for more details on IUnknown methods.
*/
ULONG
WINAPI
OLEFontImpl_Release
(
static
ULONG
WINAPI
OLEFontImpl_Release
(
IFont
*
iface
)
{
OLEFontImpl
*
this
=
(
OLEFontImpl
*
)
iface
;
...
...
dlls/oleaut32/typelib.c
View file @
c42130f0
...
...
@@ -5685,7 +5685,7 @@ _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args) {
/* The size of the argument on the stack in DWORD units (in all x86 call
* convetions the arguments on the stack are DWORD-aligned)
*/
int
_dispargsize
(
VARTYPE
vt
)
static
int
_dispargsize
(
VARTYPE
vt
)
{
switch
(
vt
)
{
case
VT_I8
:
...
...
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