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
30915066
Commit
30915066
authored
May 31, 2009
by
Andrew Eikum
Committed by
Alexandre Julliard
Jun 01, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stubs for GdipBeginContainer and GdipBeginContainerI.
parent
8d6ee561
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
2 deletions
+17
-2
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+2
-2
graphics.c
dlls/gdiplus/graphics.c
+12
-0
gdiplusflat.h
include/gdiplusflat.h
+3
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
30915066
...
...
@@ -33,8 +33,8 @@
@ stdcall GdipAddPathStringI(ptr wstr long ptr long long ptr ptr)
@ stdcall GdipAlloc(long)
@ stdcall GdipBeginContainer2(ptr ptr)
@ st
ub GdipBeginContainer
@ st
ub GdipBeginContainerI
@ st
dcall GdipBeginContainer(ptr ptr ptr long ptr)
@ st
dcall GdipBeginContainerI(ptr ptr ptr long ptr)
@ stub GdipBitmapApplyEffect
@ stub GdipBitmapConvertFormat
@ stub GdipBitmapCreateApplyEffect
...
...
dlls/gdiplus/graphics.c
View file @
30915066
...
...
@@ -3152,6 +3152,18 @@ GpStatus WINGDIPAPI GdipBeginContainer2(GpGraphics *graphics, GraphicsContainer
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipBeginContainer
(
GpGraphics
*
graphics
,
GDIPCONST
GpRectF
*
dstrect
,
GDIPCONST
GpRectF
*
srcrect
,
GpUnit
unit
,
GraphicsContainer
*
state
)
{
FIXME
(
"(%p, %p, %p, %d, %p): stub
\n
"
,
graphics
,
dstrect
,
srcrect
,
unit
,
state
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipBeginContainerI
(
GpGraphics
*
graphics
,
GDIPCONST
GpRect
*
dstrect
,
GDIPCONST
GpRect
*
srcrect
,
GpUnit
unit
,
GraphicsContainer
*
state
)
{
FIXME
(
"(%p, %p, %p, %d, %p): stub
\n
"
,
graphics
,
dstrect
,
srcrect
,
unit
,
state
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipEndContainer
(
GpGraphics
*
graphics
,
GraphicsState
state
)
{
FIXME
(
"(%p, 0x%x)
\n
"
,
graphics
,
state
);
...
...
include/gdiplusflat.h
View file @
30915066
...
...
@@ -118,6 +118,9 @@ GpStatus WINGDIPAPI GdipIsStyleAvailable(GDIPCONST GpFontFamily *, INT, BOOL*);
/* Graphics */
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
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