1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

propvarutil.h: Fixed inline syntax.

This commit is contained in:
Jacek Caban 2011-07-05 12:57:09 +02:00 committed by Alexandre Julliard
parent 92ff88155a
commit d46081e67d

View File

@ -46,14 +46,14 @@ HRESULT InitPropVariantFromString(PCWSTR psz, PROPVARIANT *ppropvar);
#ifndef NO_PROPVAR_INLINES
HRESULT inline InitPropVariantFromBoolean(BOOL fVal, PROPVARIANT *ppropvar)
inline HRESULT InitPropVariantFromBoolean(BOOL fVal, PROPVARIANT *ppropvar)
{
ppropvar->vt = VT_BOOL;
ppropvar->boolVal = fVal ? VARIANT_TRUE : VARIANT_FALSE;
return S_OK;
}
HRESULT inline InitPropVariantFromString(PCWSTR psz, PROPVARIANT *ppropvar)
inline HRESULT InitPropVariantFromString(PCWSTR psz, PROPVARIANT *ppropvar)
{
HRESULT hres;