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
30574dd6
Commit
30574dd6
authored
Dec 18, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Jan 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add traces to unimplemented functions in imageattributes.c.
parent
c008984a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
imageattributes.c
dlls/gdiplus/imageattributes.c
+18
-0
No files found.
dlls/gdiplus/imageattributes.c
View file @
30574dd6
...
...
@@ -122,6 +122,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesWrapMode(GpImageAttributes *imageAttr,
{
static
int
calls
;
TRACE
(
"(%p,%u,%08x,%i)
\n
"
,
imageAttr
,
wrap
,
argb
,
clamp
);
if
(
!
imageAttr
)
return
InvalidParameter
;
...
...
@@ -136,6 +138,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesCachedBackground(GpImageAttributes *im
{
static
int
calls
;
TRACE
(
"(%p,%i)
\n
"
,
imageAttr
,
enableFlag
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -147,6 +151,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesGamma(GpImageAttributes *imageAttr,
{
static
int
calls
;
TRACE
(
"(%p,%u,%i,%0.2f)
\n
"
,
imageAttr
,
type
,
enableFlag
,
gamma
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -158,6 +164,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesNoOp(GpImageAttributes *imageAttr,
{
static
int
calls
;
TRACE
(
"(%p,%u,%i)
\n
"
,
imageAttr
,
type
,
enableFlag
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -169,6 +177,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesOutputChannel(GpImageAttributes *image
{
static
int
calls
;
TRACE
(
"(%p,%u,%i,%x)
\n
"
,
imageAttr
,
type
,
enableFlag
,
channelFlags
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -181,6 +191,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesOutputChannelColorProfile(GpImageAttri
{
static
int
calls
;
TRACE
(
"(%p,%u,%i,%s)
\n
"
,
imageAttr
,
type
,
enableFlag
,
debugstr_w
(
colorProfileFilename
));
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -193,6 +205,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesRemapTable(GpImageAttributes *imageAtt
{
static
int
calls
;
TRACE
(
"(%p,%u,%i,%u,%p)
\n
"
,
imageAttr
,
type
,
enableFlag
,
mapSize
,
map
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -204,6 +218,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesThreshold(GpImageAttributes *imageAttr
{
static
int
calls
;
TRACE
(
"(%p,%u,%i,%0.2f)
\n
"
,
imageAttr
,
type
,
enableFlag
,
threshold
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -215,6 +231,8 @@ GpStatus WINGDIPAPI GdipSetImageAttributesToIdentity(GpImageAttributes *imageAtt
{
static
int
calls
;
TRACE
(
"(%p,%u)
\n
"
,
imageAttr
,
type
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
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