shdocvw: Remove WINAPI on static functions where not needed.

Francois Gouget fgouget at codeweavers.com
Tue Nov 25 09:42:43 CST 2008


---

If you know other places where the functions touched by this patch 
are used, please let me know. For more details, see:

http://www.winehq.org/pipermail/wine-patches/2008-November/064995.html


 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);
-- 
1.5.6.5




More information about the wine-patches mailing list