oleaut32: Make some functions static.
diff --git a/dlls/oleaut32/olefont.c b/dlls/oleaut32/olefont.c
index 1a30621..da622a1 100644
--- a/dlls/oleaut32/olefont.c
+++ b/dlls/oleaut32/olefont.c
@@ -328,7 +328,7 @@
  *
  * See Windows documentation for more details on IUnknown methods.
  */
-HRESULT WINAPI OLEFontImpl_QueryInterface(
+static HRESULT WINAPI OLEFontImpl_QueryInterface(
   IFont*  iface,
   REFIID  riid,
   void**  ppvObject)
@@ -384,7 +384,7 @@
  *
  * See Windows documentation for more details on IUnknown methods.
  */
-ULONG WINAPI OLEFontImpl_AddRef(
+static ULONG WINAPI OLEFontImpl_AddRef(
   IFont* iface)
 {
   OLEFontImpl *this = (OLEFontImpl *)iface;
@@ -397,7 +397,7 @@
  *
  * See Windows documentation for more details on IUnknown methods.
  */
-ULONG WINAPI OLEFontImpl_Release(
+static ULONG WINAPI OLEFontImpl_Release(
       IFont* iface)
 {
   OLEFontImpl *this = (OLEFontImpl *)iface;
diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c
index 8e4745b..9bc601e 100644
--- a/dlls/oleaut32/typelib.c
+++ b/dlls/oleaut32/typelib.c
@@ -5685,7 +5685,7 @@
 /* The size of the argument on the stack in DWORD units (in all x86 call
  * convetions the arguments on the stack are DWORD-aligned)
  */
-int _dispargsize(VARTYPE vt)
+static int _dispargsize(VARTYPE vt)
 {
     switch (vt) {
     case VT_I8: