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
b850008b
Commit
b850008b
authored
Jun 01, 2009
by
Andrew Eikum
Committed by
Alexandre Julliard
Jun 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub for GdipComment.
parent
57134fc8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
graphics.c
dlls/gdiplus/graphics.c
+6
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
b850008b
...
...
@@ -65,7 +65,7 @@
@ stdcall GdipCombineRegionRect(ptr ptr long)
@ stdcall GdipCombineRegionRectI(ptr ptr long)
@ stdcall GdipCombineRegionRegion(ptr ptr long)
@ st
ub GdipComment
@ st
dcall GdipComment(ptr long ptr)
@ stdcall GdipConvertToEmfPlus(ptr ptr ptr long ptr ptr)
@ stub GdipConvertToEmfPlusToFile
@ stub GdipConvertToEmfPlusToStream
...
...
dlls/gdiplus/graphics.c
View file @
b850008b
...
...
@@ -3164,6 +3164,12 @@ GpStatus WINGDIPAPI GdipBeginContainerI(GpGraphics *graphics, GDIPCONST GpRect *
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipComment
(
GpGraphics
*
graphics
,
UINT
sizeData
,
GDIPCONST
BYTE
*
data
)
{
FIXME
(
"(%p, %d, %p): stub
\n
"
,
graphics
,
sizeData
,
data
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipEndContainer
(
GpGraphics
*
graphics
,
GraphicsState
state
)
{
FIXME
(
"(%p, 0x%x)
\n
"
,
graphics
,
state
);
...
...
include/gdiplusflat.h
View file @
b850008b
...
...
@@ -123,6 +123,7 @@ GpStatus WINGDIPAPI GdipFlush(GpGraphics*, GpFlushIntention);
GpStatus
WINGDIPAPI
GdipBeginContainer
(
GpGraphics
*
,
GDIPCONST
GpRectF
*
,
GDIPCONST
GpRectF
*
,
GpUnit
,
GraphicsContainer
*
);
GpStatus
WINGDIPAPI
GdipBeginContainer2
(
GpGraphics
*
,
GraphicsContainer
*
);
GpStatus
WINGDIPAPI
GdipBeginContainerI
(
GpGraphics
*
,
GDIPCONST
GpRect
*
,
GDIPCONST
GpRect
*
,
GpUnit
,
GraphicsContainer
*
);
GpStatus
WINGDIPAPI
GdipComment
(
GpGraphics
*
,
UINT
,
GDIPCONST
BYTE
*
);
GpStatus
WINGDIPAPI
GdipCreateFromHDC
(
HDC
,
GpGraphics
**
);
GpStatus
WINGDIPAPI
GdipCreateFromHDC2
(
HDC
,
HANDLE
,
GpGraphics
**
);
GpStatus
WINGDIPAPI
GdipCreateFromHWND
(
HWND
,
GpGraphics
**
);
...
...
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