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
10f89789
Commit
10f89789
authored
Jul 02, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jul 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Implement MetadataReaderInfo_DoesRequireFullStream.
parent
bae3f2af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
info.c
dlls/windowscodecs/info.c
+4
-2
No files found.
dlls/windowscodecs/info.c
View file @
10f89789
...
...
@@ -52,6 +52,7 @@ static const WCHAR channelcount_valuename[] = {'C','h','a','n','n','e','l','C','
static
const
WCHAR
channelmasks_keyname
[]
=
{
'C'
,
'h'
,
'a'
,
'n'
,
'n'
,
'e'
,
'l'
,
'M'
,
'a'
,
's'
,
'k'
,
's'
,
0
};
static
const
WCHAR
numericrepresentation_valuename
[]
=
{
'N'
,
'u'
,
'm'
,
'e'
,
'r'
,
'i'
,
'c'
,
'R'
,
'e'
,
'p'
,
'r'
,
'e'
,
's'
,
'e'
,
'n'
,
't'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
supportstransparency_valuename
[]
=
{
'S'
,
'u'
,
'p'
,
'p'
,
'o'
,
'r'
,
't'
,
's'
,
'T'
,
'r'
,
'a'
,
'n'
,
's'
,
'p'
,
'a'
,
'r'
,
'e'
,
'n'
,
'c'
,
'y'
,
0
};
static
const
WCHAR
requiresfullstream_valuename
[]
=
{
'R'
,
'e'
,
'q'
,
'u'
,
'i'
,
'r'
,
'e'
,
's'
,
'F'
,
'u'
,
'l'
,
'l'
,
'S'
,
't'
,
'r'
,
'e'
,
'a'
,
'm'
,
0
};
static
HRESULT
ComponentInfo_GetStringValue
(
HKEY
classkey
,
LPCWSTR
value
,
UINT
buffer_size
,
WCHAR
*
buffer
,
UINT
*
actual_size
)
...
...
@@ -1580,8 +1581,9 @@ static HRESULT WINAPI MetadataReaderInfo_GetDeviceModels(IWICMetadataReaderInfo
static
HRESULT
WINAPI
MetadataReaderInfo_DoesRequireFullStream
(
IWICMetadataReaderInfo
*
iface
,
BOOL
*
param
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
param
);
return
E_NOTIMPL
;
MetadataReaderInfo
*
This
=
impl_from_IWICMetadataReaderInfo
(
iface
);
TRACE
(
"(%p,%p)
\n
"
,
iface
,
param
);
return
ComponentInfo_GetDWORDValue
(
This
->
classkey
,
requiresfullstream_valuename
,
(
DWORD
*
)
param
);
}
static
HRESULT
WINAPI
MetadataReaderInfo_DoesSupportPadding
(
IWICMetadataReaderInfo
*
iface
,
...
...
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