quartz: Remove CALLBACK on static functions where not needed.

Francois Gouget fgouget at codeweavers.com
Tue Nov 25 09:43:07 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/quartz/pin.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/quartz/pin.c b/dlls/quartz/pin.c
index 5689015..2d63064 100644
--- a/dlls/quartz/pin.c
+++ b/dlls/quartz/pin.c
@@ -1460,7 +1460,7 @@ ULONG WINAPI PullPin_Release(IPin *iface)
     return refCount;
 }
 
-static void CALLBACK PullPin_Flush(PullPin *This)
+static void PullPin_Flush(PullPin *This)
 {
     IMediaSample *pSample;
     TRACE("Flushing!\n");
@@ -1488,7 +1488,7 @@ static void CALLBACK PullPin_Flush(PullPin *This)
     }
 }
 
-static void CALLBACK PullPin_Thread_Process(PullPin *This)
+static void PullPin_Thread_Process(PullPin *This)
 {
     HRESULT hr;
     IMediaSample * pSample = NULL;
@@ -1568,7 +1568,7 @@ static void CALLBACK PullPin_Thread_Process(PullPin *This)
     TRACE("End: %08x, %d\n", hr, This->stop_playback);
 }
 
-static void CALLBACK PullPin_Thread_Pause(PullPin *This)
+static void PullPin_Thread_Pause(PullPin *This)
 {
     PullPin_Flush(This);
 
@@ -1578,7 +1578,7 @@ static void CALLBACK PullPin_Thread_Pause(PullPin *This)
     LeaveCriticalSection(This->pin.pCritSec);
 }
 
-static void CALLBACK PullPin_Thread_Stop(PullPin *This)
+static void  PullPin_Thread_Stop(PullPin *This)
 {
     TRACE("(%p)->()\n", This);
 
-- 
1.5.6.5




More information about the wine-patches mailing list