Make functions static, fix declarations.

diff --git a/dlls/quartz/control.c b/dlls/quartz/control.c
index b9d8790..9a930ae 100644
--- a/dlls/quartz/control.c
+++ b/dlls/quartz/control.c
@@ -163,7 +163,7 @@
     return E_INVALIDARG;
 }
 
-__inline LONGLONG Adjust(LONGLONG value, LONGLONG * pModifier, DWORD dwFlags)
+static inline LONGLONG Adjust(LONGLONG value, LONGLONG * pModifier, DWORD dwFlags)
 {
     switch (dwFlags & AM_SEEKING_PositioningBitsMask)
     {
diff --git a/dlls/quartz/enummedia.c b/dlls/quartz/enummedia.c
index 0606210..43e96b2 100644
--- a/dlls/quartz/enummedia.c
+++ b/dlls/quartz/enummedia.c
@@ -50,7 +50,7 @@
     }
 }
 
-AM_MEDIA_TYPE * CreateMediaType(AM_MEDIA_TYPE const * pSrc)
+static AM_MEDIA_TYPE * CreateMediaType(AM_MEDIA_TYPE const * pSrc)
 {
     AM_MEDIA_TYPE * pDest;
     
diff --git a/dlls/quartz/enummoniker.c b/dlls/quartz/enummoniker.c
index c0451ff..cfdf5f8 100644
--- a/dlls/quartz/enummoniker.c
+++ b/dlls/quartz/enummoniker.c
@@ -21,16 +21,10 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <stdarg.h>
-
 #define COBJMACROS
 #define COM_NO_WINDOWS_H
 
-#include "windef.h"
-#include "winbase.h"
-#include "winuser.h"
-#include "ole2.h"
-#include "strmif.h"
+#include "quartz_private.h"
 
 #include "wine/debug.h"
 
diff --git a/dlls/quartz/filesource.c b/dlls/quartz/filesource.c
index 0020af9..5cd9f0f 100644
--- a/dlls/quartz/filesource.c
+++ b/dlls/quartz/filesource.c
@@ -677,7 +677,7 @@
     struct DATAREQUEST * pNext; /* next data request in list */
 } DATAREQUEST;
 
-void queue(DATAREQUEST * pHead, DATAREQUEST * pItem)
+static void queue(DATAREQUEST * pHead, DATAREQUEST * pItem)
 {
     DATAREQUEST * pCurrent;
     for (pCurrent = pHead; pCurrent->pNext; pCurrent = pCurrent->pNext)
diff --git a/dlls/quartz/transform.c b/dlls/quartz/transform.c
index d692598..dc38b20 100644
--- a/dlls/quartz/transform.c
+++ b/dlls/quartz/transform.c
@@ -146,7 +146,7 @@
     return E_FAIL;
 }
 
-HRESULT TransformFilter_OutputPin_Construct(const PIN_INFO * pPinInfo, ALLOCATOR_PROPERTIES *props, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, IPin ** ppPin)
+static HRESULT TransformFilter_OutputPin_Construct(const PIN_INFO * pPinInfo, ALLOCATOR_PROPERTIES *props, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, IPin ** ppPin)
 {
     OutputPin * pPinImpl;
 
@@ -497,7 +497,7 @@
     TransformFilter_QueryVendorInfo
 };
 
-HRESULT WINAPI TransformFilter_InputPin_EndOfStream(IPin * iface)
+static HRESULT WINAPI TransformFilter_InputPin_EndOfStream(IPin * iface)
 {
     InputPin* This = (InputPin*) iface;
     TransformFilterImpl* pTransform;
@@ -545,7 +545,7 @@
     InputPin_NewSegment
 };
 
-HRESULT WINAPI TransformFilter_Output_EnumMediaTypes(IPin * iface, IEnumMediaTypes ** ppEnum)
+static HRESULT WINAPI TransformFilter_Output_EnumMediaTypes(IPin * iface, IEnumMediaTypes ** ppEnum)
 {
     IPinImpl *This = (IPinImpl *)iface;
     ENUMMEDIADETAILS emd;
@@ -558,7 +558,7 @@
     return IEnumMediaTypesImpl_Construct(&emd, ppEnum);
 }
 
-HRESULT WINAPI TransformFilter_Output_Disconnect(IPin * iface)
+static HRESULT WINAPI TransformFilter_Output_Disconnect(IPin * iface)
 {
     OutputPin* This = (OutputPin*)iface;
     HRESULT hr;