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
348c115a
Commit
348c115a
authored
Dec 02, 2008
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub for GdipGetImagePaletteSize.
parent
5a1a2631
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
image.c
dlls/gdiplus/image.c
+10
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
348c115a
...
...
@@ -292,7 +292,7 @@
@ stdcall GdipGetImageHorizontalResolution(ptr ptr)
@ stub GdipGetImageItemData
@ stub GdipGetImagePalette
@ st
ub GdipGetImagePaletteSize
@ st
dcall GdipGetImagePaletteSize(ptr ptr)
@ stdcall GdipGetImagePixelFormat(ptr ptr)
@ stdcall GdipGetImageRawFormat(ptr ptr)
@ stub GdipGetImageThumbnail
...
...
dlls/gdiplus/image.c
View file @
348c115a
...
...
@@ -748,6 +748,16 @@ GpStatus WINGDIPAPI GdipGetImageHorizontalResolution(GpImage *image, REAL *res)
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipGetImagePaletteSize
(
GpImage
*
image
,
INT
*
size
)
{
FIXME
(
"%p %p
\n
"
,
image
,
size
);
if
(
!
image
||
!
size
)
return
InvalidParameter
;
return
NotImplemented
;
}
/* FIXME: test this function for non-bitmap types */
GpStatus
WINGDIPAPI
GdipGetImagePixelFormat
(
GpImage
*
image
,
PixelFormat
*
format
)
{
...
...
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