Commit 194fd077 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mlang: Remove WINAPI on static functions where not needed.

parent 54af22f6
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment