Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
9ceb1fc1
Commit
9ceb1fc1
authored
12 years ago
by
Esme Povirk
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
windowscodecs: Implement IWICPixelFormatInfo2::GetNumericRepresentation.
parent
c8fea25a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/windowscodecs/info.c
+6
-2
6 additions, 2 deletions
dlls/windowscodecs/info.c
with
6 additions
and
2 deletions
dlls/windowscodecs/info.c
+
6
−
2
View file @
9ceb1fc1
...
...
@@ -49,6 +49,7 @@ static const WCHAR version_valuename[] = {'V','e','r','s','i','o','n',0};
static
const
WCHAR
bitsperpixel_valuename
[]
=
{
'B'
,
'i'
,
't'
,
'L'
,
'e'
,
'n'
,
'g'
,
't'
,
'h'
,
0
};
static
const
WCHAR
channelcount_valuename
[]
=
{
'C'
,
'h'
,
'a'
,
'n'
,
'n'
,
'e'
,
'l'
,
'C'
,
'o'
,
'u'
,
'n'
,
't'
,
0
};
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
HRESULT
ComponentInfo_GetStringValue
(
HKEY
classkey
,
LPCWSTR
value
,
UINT
buffer_size
,
WCHAR
*
buffer
,
UINT
*
actual_size
)
...
...
@@ -1330,8 +1331,11 @@ static HRESULT WINAPI PixelFormatInfo_SupportsTransparency(IWICPixelFormatInfo2
static
HRESULT
WINAPI
PixelFormatInfo_GetNumericRepresentation
(
IWICPixelFormatInfo2
*
iface
,
WICPixelFormatNumericRepresentation
*
pNumericRepresentation
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
iface
,
pNumericRepresentation
);
return
E_NOTIMPL
;
PixelFormatInfo
*
This
=
impl_from_IWICPixelFormatInfo2
(
iface
);
TRACE
(
"(%p,%p)
\n
"
,
iface
,
pNumericRepresentation
);
return
ComponentInfo_GetDWORDValue
(
This
->
classkey
,
numericrepresentation_valuename
,
pNumericRepresentation
);
}
static
const
IWICPixelFormatInfo2Vtbl
PixelFormatInfo_Vtbl
=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment