Francois Gouget : shdocvw: Remove WINAPI on static functions where not needed.
Module: wine Branch: master Commit: 2a2387b984e01dba4e86860cc900b96009362b66 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2a2387b984e01dba4e86860cc9... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Tue Nov 25 16:42:43 2008 +0100 shdocvw: Remove WINAPI on static functions where not needed. --- dlls/shdocvw/intshcut.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/shdocvw/intshcut.c b/dlls/shdocvw/intshcut.c index fd5e5bf..86bc543 100644 --- a/dlls/shdocvw/intshcut.c +++ b/dlls/shdocvw/intshcut.c @@ -103,7 +103,7 @@ static BOOL StartLinkProcessor(LPCOLESTR szLink) /* 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); *ppvObject = NULL; @@ -134,13 +134,13 @@ static HRESULT WINAPI Unknown_QueryInterface(InternetShortcut *This, REFIID riid return S_OK; } -static ULONG WINAPI Unknown_AddRef(InternetShortcut *This) +static ULONG Unknown_AddRef(InternetShortcut *This) { TRACE("(%p)\n", This); return InterlockedIncrement(&This->refCount); } -static ULONG WINAPI Unknown_Release(InternetShortcut *This) +static ULONG Unknown_Release(InternetShortcut *This) { ULONG count; TRACE("(%p)\n", This);
participants (1)
-
Alexandre Julliard