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
d905919c
Commit
d905919c
authored
Feb 01, 2021
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 01, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Fix vtable variables types.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e89a41a9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
11 deletions
+15
-11
analyzer.c
dlls/dwrite/analyzer.c
+4
-2
font.c
dlls/dwrite/font.c
+3
-3
gdiinterop.c
dlls/dwrite/gdiinterop.c
+5
-3
main.c
dlls/dwrite/main.c
+3
-3
No files found.
dlls/dwrite/analyzer.c
View file @
d905919c
...
...
@@ -1815,7 +1815,8 @@ static HRESULT WINAPI dwritetextanalyzer2_CheckTypographicFeature(IDWriteTextAna
return
hr
;
}
static
const
struct
IDWriteTextAnalyzer2Vtbl
textanalyzervtbl
=
{
static
const
IDWriteTextAnalyzer2Vtbl
textanalyzervtbl
=
{
dwritetextanalyzer_QueryInterface
,
dwritetextanalyzer_AddRef
,
dwritetextanalyzer_Release
,
...
...
@@ -1891,7 +1892,8 @@ static ULONG WINAPI dwritenumbersubstitution_Release(IDWriteNumberSubstitution *
return
ref
;
}
static
const
struct
IDWriteNumberSubstitutionVtbl
numbersubstitutionvtbl
=
{
static
const
IDWriteNumberSubstitutionVtbl
numbersubstitutionvtbl
=
{
dwritenumbersubstitution_QueryInterface
,
dwritenumbersubstitution_AddRef
,
dwritenumbersubstitution_Release
...
...
dlls/dwrite/font.c
View file @
d905919c
...
...
@@ -4567,7 +4567,7 @@ err:
return
hr
;
}
static
const
struct
IDWriteFontFileEnumeratorVtbl
systemfontfileenumeratorvtbl
=
static
const
IDWriteFontFileEnumeratorVtbl
systemfontfileenumeratorvtbl
=
{
systemfontfileenumerator_QueryInterface
,
systemfontfileenumerator_AddRef
,
...
...
@@ -5450,7 +5450,7 @@ static HRESULT WINAPI localfontfileloader_GetLastWriteTimeFromKey(IDWriteLocalFo
return
S_OK
;
}
static
const
struct
IDWriteLocalFontFileLoaderVtbl
localfontfileloadervtbl
=
static
const
IDWriteLocalFontFileLoaderVtbl
localfontfileloadervtbl
=
{
localfontfileloader_QueryInterface
,
localfontfileloader_AddRef
,
...
...
@@ -5873,7 +5873,7 @@ static HRESULT WINAPI glyphrunanalysis_GetAlphaBlendParams(IDWriteGlyphRunAnalys
return
S_OK
;
}
static
const
struct
IDWriteGlyphRunAnalysisVtbl
glyphrunanalysisvtbl
=
static
const
IDWriteGlyphRunAnalysisVtbl
glyphrunanalysisvtbl
=
{
glyphrunanalysis_QueryInterface
,
glyphrunanalysis_AddRef
,
...
...
dlls/dwrite/gdiinterop.c
View file @
d905919c
...
...
@@ -911,7 +911,8 @@ static HRESULT WINAPI gdiinterop1_GetMatchingFontsByLOGFONT(IDWriteGdiInterop1 *
return
E_NOTIMPL
;
}
static
const
struct
IDWriteGdiInterop1Vtbl
gdiinteropvtbl
=
{
static
const
IDWriteGdiInterop1Vtbl
gdiinteropvtbl
=
{
gdiinterop_QueryInterface
,
gdiinterop_AddRef
,
gdiinterop_Release
,
...
...
@@ -1022,7 +1023,7 @@ static HRESULT WINAPI memresourcestream_GetLastWriteTime(IDWriteFontFileStream *
return
E_NOTIMPL
;
}
static
const
struct
IDWriteFontFileStreamVtbl
memresourcestreamvtbl
=
static
const
IDWriteFontFileStreamVtbl
memresourcestreamvtbl
=
{
memresourcestream_QueryInterface
,
memresourcestream_AddRef
,
...
...
@@ -1082,7 +1083,8 @@ static HRESULT WINAPI memresourceloader_CreateStreamFromKey(IDWriteFontFileLoade
return
S_OK
;
}
static
const
struct
IDWriteFontFileLoaderVtbl
memresourceloadervtbl
=
{
static
const
IDWriteFontFileLoaderVtbl
memresourceloadervtbl
=
{
memresourceloader_QueryInterface
,
memresourceloader_AddRef
,
memresourceloader_Release
,
...
...
dlls/dwrite/main.c
View file @
d905919c
...
...
@@ -204,7 +204,7 @@ static DWRITE_RENDERING_MODE1 WINAPI renderingparams3_GetRenderingMode1(IDWriteR
return
params
->
mode
;
}
static
const
struct
IDWriteRenderingParams3Vtbl
renderingparamsvtbl
=
static
const
IDWriteRenderingParams3Vtbl
renderingparamsvtbl
=
{
renderingparams_QueryInterface
,
renderingparams_AddRef
,
...
...
@@ -1756,7 +1756,7 @@ static HRESULT WINAPI dwritefactory7_GetSystemFontCollection(IDWriteFactory7 *if
return
E_NOTIMPL
;
}
static
const
struct
IDWriteFactory7Vtbl
dwritefactoryvtbl
=
static
const
IDWriteFactory7Vtbl
dwritefactoryvtbl
=
{
dwritefactory_QueryInterface
,
dwritefactory_AddRef
,
...
...
@@ -1831,7 +1831,7 @@ static ULONG WINAPI shareddwritefactory_Release(IDWriteFactory7 *iface)
return
1
;
}
static
const
struct
IDWriteFactory7Vtbl
shareddwritefactoryvtbl
=
static
const
IDWriteFactory7Vtbl
shareddwritefactoryvtbl
=
{
dwritefactory_QueryInterface
,
shareddwritefactory_AddRef
,
...
...
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