riched20: Added some tom* constants used with ITextFont::Reset().
This commit is contained in:
parent
4b110f7554
commit
1f55764dfc
|
@ -46,10 +46,18 @@ typedef enum tagTomConstants
|
||||||
tomDefault = -9999996,
|
tomDefault = -9999996,
|
||||||
tomSuspend = -9999995,
|
tomSuspend = -9999995,
|
||||||
tomResume = -9999994,
|
tomResume = -9999994,
|
||||||
tomApplyNow = 0,
|
|
||||||
tomApplyLater = 1,
|
/* ITextFont::Reset() modes */
|
||||||
tomTrackParms = 2,
|
tomApplyNow = 0,
|
||||||
tomCacheParms = 3,
|
tomApplyLater = 1,
|
||||||
|
tomTrackParms = 2,
|
||||||
|
tomCacheParms = 3,
|
||||||
|
tomApplyTmp = 4,
|
||||||
|
tomDisableSmartFont = 8,
|
||||||
|
tomEnableSmartFont = 9,
|
||||||
|
tomUsePoints = 10,
|
||||||
|
tomUseTwips = 11,
|
||||||
|
|
||||||
tomBackward = 0xc0000001,
|
tomBackward = 0xc0000001,
|
||||||
tomForward = 0x3fffffff,
|
tomForward = 0x3fffffff,
|
||||||
tomMove = 0,
|
tomMove = 0,
|
||||||
|
|
|
@ -1821,14 +1821,14 @@ static HRESULT WINAPI TextFont_CanChange(ITextFont *iface, LONG *ret)
|
||||||
static HRESULT WINAPI TextFont_IsEqual(ITextFont *iface, ITextFont *font, LONG *ret)
|
static HRESULT WINAPI TextFont_IsEqual(ITextFont *iface, ITextFont *font, LONG *ret)
|
||||||
{
|
{
|
||||||
ITextFontImpl *This = impl_from_ITextFont(iface);
|
ITextFontImpl *This = impl_from_ITextFont(iface);
|
||||||
FIXME("(%p)->(%p): stub\n", This, ret);
|
FIXME("(%p)->(%p %p): stub\n", This, font, ret);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI TextFont_Reset(ITextFont *iface, LONG value)
|
static HRESULT WINAPI TextFont_Reset(ITextFont *iface, LONG value)
|
||||||
{
|
{
|
||||||
ITextFontImpl *This = impl_from_ITextFont(iface);
|
ITextFontImpl *This = impl_from_ITextFont(iface);
|
||||||
FIXME("(%p): stub\n", This);
|
FIXME("(%p)->(%d): stub\n", This, value);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -33,10 +33,18 @@ typedef enum tagTomConstants
|
||||||
tomDefault = -9999996,
|
tomDefault = -9999996,
|
||||||
tomSuspend = -9999995,
|
tomSuspend = -9999995,
|
||||||
tomResume = -9999994,
|
tomResume = -9999994,
|
||||||
tomApplyNow = 0,
|
|
||||||
tomApplyLater = 1,
|
/* ITextFont::Reset() modes */
|
||||||
tomTrackParms = 2,
|
tomApplyNow = 0,
|
||||||
tomCacheParms = 3,
|
tomApplyLater = 1,
|
||||||
|
tomTrackParms = 2,
|
||||||
|
tomCacheParms = 3,
|
||||||
|
tomApplyTmp = 4,
|
||||||
|
tomDisableSmartFont = 8,
|
||||||
|
tomEnableSmartFont = 9,
|
||||||
|
tomUsePoints = 10,
|
||||||
|
tomUseTwips = 11,
|
||||||
|
|
||||||
tomBackward = 0xc0000001,
|
tomBackward = 0xc0000001,
|
||||||
tomForward = 0x3fffffff,
|
tomForward = 0x3fffffff,
|
||||||
tomMove = 0,
|
tomMove = 0,
|
||||||
|
|
Loading…
Reference in New Issue