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
cc42922e
Commit
cc42922e
authored
Nov 25, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Remove WINAPI on static functions where not needed.
parent
c584c2d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
dispatch.c
dlls/oleaut32/dispatch.c
+2
-2
typelib.c
dlls/oleaut32/typelib.c
+2
-2
No files found.
dlls/oleaut32/dispatch.c
View file @
cc42922e
...
...
@@ -39,7 +39,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
static
IDispatch
*
WINAPI
StdDispatch_Construct
(
IUnknown
*
punkOuter
,
void
*
pvThis
,
ITypeInfo
*
pTypeInfo
);
static
IDispatch
*
StdDispatch_Construct
(
IUnknown
*
punkOuter
,
void
*
pvThis
,
ITypeInfo
*
pTypeInfo
);
/******************************************************************************
* DispInvoke (OLEAUT32.30)
...
...
@@ -425,7 +425,7 @@ static const IDispatchVtbl StdDispatch_VTable =
StdDispatch_Invoke
};
static
IDispatch
*
WINAPI
StdDispatch_Construct
(
static
IDispatch
*
StdDispatch_Construct
(
IUnknown
*
punkOuter
,
void
*
pvThis
,
ITypeInfo
*
pTypeInfo
)
...
...
dlls/oleaut32/typelib.c
View file @
cc42922e
...
...
@@ -1036,7 +1036,7 @@ static inline ITypeInfoImpl *info_impl_from_ITypeComp( ITypeComp *iface )
static
const
ITypeInfo2Vtbl
tinfvt
;
static
const
ITypeCompVtbl
tcompvt
;
static
ITypeInfo2
*
WINAPI
ITypeInfo_Constructor
(
void
);
static
ITypeInfo2
*
ITypeInfo_Constructor
(
void
);
typedef
struct
tagTLBContext
{
...
...
@@ -4805,7 +4805,7 @@ static const ITypeCompVtbl tlbtcvt =
};
/*================== ITypeInfo(2) Methods ===================================*/
static
ITypeInfo2
*
WINAPI
ITypeInfo_Constructor
(
void
)
static
ITypeInfo2
*
ITypeInfo_Constructor
(
void
)
{
ITypeInfoImpl
*
pTypeInfoImpl
;
...
...
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