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
495c42b6
Commit
495c42b6
authored
Dec 18, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Jan 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add traces to unimplemented functions in image.c.
parent
d694679a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
image.c
dlls/gdiplus/image.c
+20
-0
No files found.
dlls/gdiplus/image.c
View file @
495c42b6
...
...
@@ -945,6 +945,9 @@ GpStatus WINGDIPAPI GdipConvertToEmfPlus(const GpGraphics* ref,
{
static
int
calls
;
TRACE
(
"(%p,%p,%p,%u,%s,%p)
\n
"
,
ref
,
metafile
,
succ
,
emfType
,
debugstr_w
(
description
),
out_metafile
);
if
(
!
ref
||
!
metafile
||
!
out_metafile
)
return
InvalidParameter
;
...
...
@@ -1429,9 +1432,16 @@ GpStatus WINGDIPAPI GdipDisposeImage(GpImage *image)
GpStatus
WINGDIPAPI
GdipFindFirstImageItem
(
GpImage
*
image
,
ImageItemData
*
item
)
{
static
int
calls
;
TRACE
(
"(%p,%p)
\n
"
,
image
,
item
);
if
(
!
image
||
!
item
)
return
InvalidParameter
;
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
return
NotImplemented
;
}
...
...
@@ -1729,6 +1739,8 @@ GpStatus WINGDIPAPI GdipGetPropertySize(GpImage *image, UINT* size, UINT* num)
{
static
int
calls
;
TRACE
(
"(%p,%p,%p)
\n
"
,
image
,
size
,
num
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -1753,6 +1765,8 @@ GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
{
static
int
calls
;
TRACE
(
"(%p,%s,%p)
\n
"
,
image
,
debugstr_guid
(
dimensionID
),
count
);
if
(
!
image
||
!
dimensionID
||
!
count
)
return
InvalidParameter
;
...
...
@@ -2142,6 +2156,8 @@ GpStatus WINGDIPAPI GdipRemovePropertyItem(GpImage *image, PROPID propId)
{
static
int
calls
;
TRACE
(
"(%p,%u)
\n
"
,
image
,
propId
);
if
(
!
image
)
return
InvalidParameter
;
...
...
@@ -2155,6 +2171,8 @@ GpStatus WINGDIPAPI GdipSetPropertyItem(GpImage *image, GDIPCONST PropertyItem*
{
static
int
calls
;
TRACE
(
"(%p,%p)
\n
"
,
image
,
item
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
...
...
@@ -2848,6 +2866,8 @@ GpStatus WINGDIPAPI GdipSetEffectParameters(CGpEffect *effect,
{
static
int
calls
;
TRACE
(
"(%p,%p,%u)
\n
"
,
effect
,
params
,
size
);
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