Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1f55764d
Commit
1f55764d
authored
May 22, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Added some tom* constants used with ITextFont::Reset().
parent
4b110f75
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
10 deletions
+26
-10
riched_tom.idl
dlls/riched20/riched_tom.idl
+12
-4
richole.c
dlls/riched20/richole.c
+2
-2
tom.idl
include/tom.idl
+12
-4
No files found.
dlls/riched20/riched_tom.idl
View file @
1f55764d
...
...
@@ -46,10 +46,18 @@ typedef enum tagTomConstants
tomDefault
=
-
9999996
,
tomSuspend
=
-
9999995
,
tomResume
=
-
9999994
,
tomApplyNow
=
0
,
tomApplyLater
=
1
,
tomTrackParms
=
2
,
tomCacheParms
=
3
,
/*
ITextFont
::
Reset
()
modes
*/
tomApplyNow
=
0
,
tomApplyLater
=
1
,
tomTrackParms
=
2
,
tomCacheParms
=
3
,
tomApplyTmp
=
4
,
tomDisableSmartFont
=
8
,
tomEnableSmartFont
=
9
,
tomUsePoints
=
10
,
tomUseTwips
=
11
,
tomBackward
=
0
xc0000001
,
tomForward
=
0
x3fffffff
,
tomMove
=
0
,
...
...
dlls/riched20/richole.c
View file @
1f55764d
...
...
@@ -1821,14 +1821,14 @@ static HRESULT WINAPI TextFont_CanChange(ITextFont *iface, LONG *ret)
static
HRESULT
WINAPI
TextFont_IsEqual
(
ITextFont
*
iface
,
ITextFont
*
font
,
LONG
*
ret
)
{
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
;
}
static
HRESULT
WINAPI
TextFont_Reset
(
ITextFont
*
iface
,
LONG
value
)
{
ITextFontImpl
*
This
=
impl_from_ITextFont
(
iface
);
FIXME
(
"(%p)
: stub
\n
"
,
This
);
FIXME
(
"(%p)
->(%d): stub
\n
"
,
This
,
value
);
return
E_NOTIMPL
;
}
...
...
include/tom.idl
View file @
1f55764d
...
...
@@ -33,10 +33,18 @@ typedef enum tagTomConstants
tomDefault
=
-
9999996
,
tomSuspend
=
-
9999995
,
tomResume
=
-
9999994
,
tomApplyNow
=
0
,
tomApplyLater
=
1
,
tomTrackParms
=
2
,
tomCacheParms
=
3
,
/*
ITextFont
::
Reset
()
modes
*/
tomApplyNow
=
0
,
tomApplyLater
=
1
,
tomTrackParms
=
2
,
tomCacheParms
=
3
,
tomApplyTmp
=
4
,
tomDisableSmartFont
=
8
,
tomEnableSmartFont
=
9
,
tomUsePoints
=
10
,
tomUseTwips
=
11
,
tomBackward
=
0
xc0000001
,
tomForward
=
0
x3fffffff
,
tomMove
=
0
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment