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
4b6cc6e3
Commit
4b6cc6e3
authored
Oct 03, 2008
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Oct 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipRecordMetafileFileName and GdipRecordMetafileFileNameI.
parent
bdf181b4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
2 deletions
+34
-2
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+2
-2
image.c
dlls/gdiplus/image.c
+21
-0
gdiplusenums.h
include/gdiplusenums.h
+11
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
4b6cc6e3
...
...
@@ -467,8 +467,8 @@
@ stdcall GdipPrivateAddFontFile(ptr wstr)
@ stub GdipPrivateAddMemoryFont
@ stub GdipRecordMetafile
@ st
ub GdipRecordMetafileFileName
@ st
ub GdipRecordMetafileFileNameI
@ st
dcall GdipRecordMetafileFileName(wstr long long ptr long wstr ptr)
@ st
dcall GdipRecordMetafileFileNameI(wstr long long ptr long wstr ptr)
@ stub GdipRecordMetafileI
@ stub GdipRecordMetafileStream
@ stub GdipRecordMetafileStreamI
...
...
dlls/gdiplus/image.c
View file @
4b6cc6e3
...
...
@@ -1455,3 +1455,24 @@ GpStatus WINGDIPAPI GdipTestControl(GpTestControlEnum control, void *param)
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipRecordMetafileFileName
(
GDIPCONST
WCHAR
*
fileName
,
HDC
hdc
,
EmfType
type
,
GDIPCONST
GpRectF
*
pFrameRect
,
MetafileFrameUnit
frameUnit
,
GDIPCONST
WCHAR
*
desc
,
GpMetafile
**
metafile
)
{
FIXME
(
"%s %p %d %p %d %s %p stub!
\n
"
,
debugstr_w
(
fileName
),
hdc
,
type
,
pFrameRect
,
frameUnit
,
debugstr_w
(
desc
),
metafile
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipRecordMetafileFileNameI
(
GDIPCONST
WCHAR
*
fileName
,
HDC
hdc
,
EmfType
type
,
GDIPCONST
GpRect
*
pFrameRect
,
MetafileFrameUnit
frameUnit
,
GDIPCONST
WCHAR
*
desc
,
GpMetafile
**
metafile
)
{
FIXME
(
"%s %p %d %p %d %s %p stub!
\n
"
,
debugstr_w
(
fileName
),
hdc
,
type
,
pFrameRect
,
frameUnit
,
debugstr_w
(
desc
),
metafile
);
return
NotImplemented
;
}
include/gdiplusenums.h
View file @
4b6cc6e3
...
...
@@ -336,6 +336,16 @@ enum GpTestControlEnum
TestControlGetBuildNumber
=
2
};
enum
MetafileFrameUnit
{
MetafileFrameUnitPixel
=
UnitPixel
,
MetafileFrameUnitPoint
=
UnitPoint
,
MetafileFrameUnitInch
=
UnitInch
,
MetafileFrameUnitDocument
=
UnitDocument
,
MetafileFrameUnitMillimeter
=
UnitMillimeter
,
MetafileFrameUnitGdi
};
#ifndef __cplusplus
typedef
enum
Unit
Unit
;
...
...
@@ -372,6 +382,7 @@ typedef enum CombineMode CombineMode;
typedef
enum
FlushIntention
FlushIntention
;
typedef
enum
CoordinateSpace
CoordinateSpace
;
typedef
enum
GpTestControlEnum
GpTestControlEnum
;
typedef
enum
MetafileFrameUnit
MetafileFrameUnit
;
#endif
/* end of c typedefs */
...
...
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