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
7b2292fa
Commit
7b2292fa
authored
Jul 30, 2009
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Aug 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add GdipRecordMetafileI stub.
parent
a89ba9e4
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
graphics.c
dlls/gdiplus/graphics.c
+10
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
7b2292fa
...
...
@@ -469,7 +469,7 @@
@ stub GdipRecordMetafile
@ stdcall GdipRecordMetafileFileName(wstr long long ptr long wstr ptr)
@ stdcall GdipRecordMetafileFileNameI(wstr long long ptr long wstr ptr)
@ st
ub GdipRecordMetafileI
@ st
dcall GdipRecordMetafileI(long long ptr long wstr ptr)
@ stub GdipRecordMetafileStream
@ stub GdipRecordMetafileStreamI
@ stdcall GdipReleaseDC(ptr ptr)
...
...
dlls/gdiplus/graphics.c
View file @
7b2292fa
...
...
@@ -4097,3 +4097,13 @@ GpStatus WINGDIPAPI GdipIsVisibleRegionPointI(GpRegion *region, INT x, INT y, Gp
FIXME
(
"(%p %d %d %p %p): stub
\n
"
,
region
,
x
,
y
,
graphics
,
result
);
return
NotImplemented
;
}
/*****************************************************************************
* GdipRecordMetafileI [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipRecordMetafileI
(
HDC
hdc
,
EmfType
type
,
GDIPCONST
GpRect
*
frameRect
,
MetafileFrameUnit
frameUnit
,
GDIPCONST
WCHAR
*
desc
,
GpMetafile
**
metafile
)
{
FIXME
(
"(%p %d %p %d %p %p): stub
\n
"
,
hdc
,
type
,
frameRect
,
frameUnit
,
desc
,
metafile
);
return
NotImplemented
;
}
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