Commit 2a2387b9 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shdocvw: Remove WINAPI on static functions where not needed.

parent 822ab7b4
...@@ -103,7 +103,7 @@ static BOOL StartLinkProcessor(LPCOLESTR szLink) ...@@ -103,7 +103,7 @@ static BOOL StartLinkProcessor(LPCOLESTR szLink)
/* interface functions */ /* interface functions */
static HRESULT WINAPI Unknown_QueryInterface(InternetShortcut *This, REFIID riid, PVOID *ppvObject) static HRESULT Unknown_QueryInterface(InternetShortcut *This, REFIID riid, PVOID *ppvObject)
{ {
TRACE("(%p, %s, %p)\n", This, debugstr_guid(riid), ppvObject); TRACE("(%p, %s, %p)\n", This, debugstr_guid(riid), ppvObject);
*ppvObject = NULL; *ppvObject = NULL;
...@@ -134,13 +134,13 @@ static HRESULT WINAPI Unknown_QueryInterface(InternetShortcut *This, REFIID riid ...@@ -134,13 +134,13 @@ static HRESULT WINAPI Unknown_QueryInterface(InternetShortcut *This, REFIID riid
return S_OK; return S_OK;
} }
static ULONG WINAPI Unknown_AddRef(InternetShortcut *This) static ULONG Unknown_AddRef(InternetShortcut *This)
{ {
TRACE("(%p)\n", This); TRACE("(%p)\n", This);
return InterlockedIncrement(&This->refCount); return InterlockedIncrement(&This->refCount);
} }
static ULONG WINAPI Unknown_Release(InternetShortcut *This) static ULONG Unknown_Release(InternetShortcut *This)
{ {
ULONG count; ULONG count;
TRACE("(%p)\n", This); TRACE("(%p)\n", This);
......
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