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
194fd077
Commit
194fd077
authored
Nov 26, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlang: Remove WINAPI on static functions where not needed.
parent
54af22f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mlang.c
dlls/mlang/mlang.c
+3
-3
No files found.
dlls/mlang/mlang.c
View file @
194fd077
...
...
@@ -1393,12 +1393,12 @@ typedef struct tagMLang_impl
DWORD
total_cp
,
total_scripts
;
}
MLang_impl
;
static
ULONG
WINAPI
MLang_AddRef
(
MLang_impl
*
This
)
static
ULONG
MLang_AddRef
(
MLang_impl
*
This
)
{
return
InterlockedIncrement
(
&
This
->
ref
);
}
static
ULONG
WINAPI
MLang_Release
(
MLang_impl
*
This
)
static
ULONG
MLang_Release
(
MLang_impl
*
This
)
{
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
...
...
@@ -1413,7 +1413,7 @@ static ULONG WINAPI MLang_Release( MLang_impl* This )
return
ref
;
}
static
HRESULT
WINAPI
MLang_QueryInterface
(
static
HRESULT
MLang_QueryInterface
(
MLang_impl
*
This
,
REFIID
riid
,
void
**
ppvObject
)
...
...
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