oleaut32: Declare some items static.

This commit is contained in:
Andrew Talbot 2007-01-20 16:51:29 +00:00 committed by Alexandre Julliard
parent dc577ed685
commit d6fc116475
4 changed files with 2 additions and 5 deletions

View File

@ -1229,7 +1229,7 @@ static void dump_TLBImplType(const TLBImplType * impl)
}
}
void dump_Variant(const VARIANT * pvar)
static void dump_Variant(const VARIANT * pvar)
{
SYSTEMTIME st;

View File

@ -599,7 +599,6 @@ WORD typeofarray
HRESULT ITypeInfoImpl_GetInternalFuncDesc( ITypeInfo *iface, UINT index, const FUNCDESC **ppFuncDesc );
extern DWORD _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args);
extern void dump_Variant(const VARIANT * pvar);
HRESULT TMARSHAL_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv);

View File

@ -1465,7 +1465,7 @@ HRESULT WINAPI VarUdateFromDate(DATE dateIn, ULONG dwFlags, UDATE *lpUdate)
TRACE("lcid 0x%x, " #name "=%d '%c'\n", lcid, lpChars->name, lpChars->name)
/* Get the valid number characters for an lcid */
void VARIANT_GetLocalisedNumberChars(VARIANT_NUMBER_CHARS *lpChars, LCID lcid, DWORD dwFlags)
static void VARIANT_GetLocalisedNumberChars(VARIANT_NUMBER_CHARS *lpChars, LCID lcid, DWORD dwFlags)
{
static const VARIANT_NUMBER_CHARS defaultChars = { '-','+','.',',','$',0,'.',',' };
LCTYPE lctype = dwFlags & LOCALE_NOUSEROVERRIDE;

View File

@ -123,5 +123,3 @@ typedef struct tagVARIANT_NUMBER_CHARS
WCHAR cCurrencyDecimalPoint;
WCHAR cCurrencyDigitSeparator;
} VARIANT_NUMBER_CHARS;
void VARIANT_GetLocalisedNumberChars(VARIANT_NUMBER_CHARS*,LCID,DWORD);