Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
58ba839b
Commit
58ba839b
authored
Jul 27, 2014
by
Jactry Zeng
Committed by
Alexandre Julliard
Jul 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix wrong type in tom.idl.
parent
147bf5bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
tom.idl
include/tom.idl
+10
-10
No files found.
include/tom.idl
View file @
58ba839b
...
...
@@ -335,22 +335,22 @@ interface ITextFont : IDispatch
HRESULT
SetEngrave
(
[
in
]
LONG
Value
)
;
HRESULT
GetItalic
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetItalic
(
[
in
]
LONG
Value
)
;
HRESULT
GetKerning
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetKerning
(
[
in
]
LONG
Value
)
;
HRESULT
GetKerning
(
[
retval
,
out
]
float
*
pValue
)
;
HRESULT
SetKerning
(
[
in
]
float
Value
)
;
HRESULT
GetLanguageID
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetLanguageID
(
[
in
]
LONG
Value
)
;
HRESULT
GetName
(
[
retval
,
out
]
BSTR
*
pValue
)
;
HRESULT
SetName
(
[
in
]
BSTR
Value
)
;
HRESULT
GetOutline
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetOutline
(
[
in
]
LONG
Value
)
;
HRESULT
GetPosition
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetPosition
(
[
in
]
LONG
Value
)
;
HRESULT
GetPosition
(
[
retval
,
out
]
float
*
pValue
)
;
HRESULT
SetPosition
(
[
in
]
float
Value
)
;
HRESULT
GetProtected
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetProtected
(
[
in
]
LONG
Value
)
;
HRESULT
GetShadow
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetShadow
(
[
in
]
LONG
Value
)
;
HRESULT
GetSize
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetSize
(
[
in
]
LONG
Value
)
;
HRESULT
GetSize
(
[
retval
,
out
]
float
*
pValue
)
;
HRESULT
SetSize
(
[
in
]
float
Value
)
;
HRESULT
GetSmallCaps
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetSmallCaps
(
[
in
]
LONG
Value
)
;
HRESULT
GetSpacing
(
[
retval
,
out
]
float
*
pValue
)
;
...
...
@@ -398,8 +398,8 @@ interface ITextPara : IDispatch
HRESULT
SetListLevelIndex
(
[
in
]
LONG
Value
)
;
HRESULT
GetListStart
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetListStart
(
[
in
]
LONG
Value
)
;
HRESULT
GetListTab
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetListTab
(
[
in
]
LONG
Value
)
;
HRESULT
GetListTab
(
[
retval
,
out
]
float
*
pValue
)
;
HRESULT
SetListTab
(
[
in
]
float
Value
)
;
HRESULT
GetListType
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetListType
(
[
in
]
LONG
Value
)
;
HRESULT
GetNoLineNumber
(
[
retval
,
out
]
LONG
*
pValue
)
;
...
...
@@ -414,8 +414,8 @@ interface ITextPara : IDispatch
HRESULT
SetSpaceAfter
(
[
in
]
float
Value
)
;
HRESULT
GetSpaceBefore
(
[
retval
,
out
]
float
*
pValue
)
;
HRESULT
SetSpaceBefore
(
[
in
]
float
Value
)
;
HRESULT
GetWi
ndowControl
(
[
retval
,
out
]
float
*
pValue
)
;
HRESULT
SetWi
ndowControl
(
[
in
]
float
Value
)
;
HRESULT
GetWi
dowControl
(
[
retval
,
out
]
LONG
*
pValue
)
;
HRESULT
SetWi
dowControl
(
[
in
]
LONG
Value
)
;
HRESULT
GetTabCount
(
[
retval
,
out
]
LONG
*
pCount
)
;
HRESULT
AddTab
(
[
in
]
float
tbPos
,
[
in
]
LONG
tbAlign
,
[
in
]
LONG
tbLeader
)
;
HRESULT
ClearAllTabs
()
;
...
...
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