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
e670b01f
Commit
e670b01f
authored
Jan 25, 2009
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jan 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Stub the NamedEscape function.
parent
640d2e02
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
driver.c
dlls/gdi32/driver.c
+12
-0
gdi32.spec
dlls/gdi32/gdi32.spec
+1
-1
No files found.
dlls/gdi32/driver.c
View file @
e670b01f
...
...
@@ -729,3 +729,15 @@ INT WINAPI DrawEscape(HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData)
FIXME
(
"DrawEscape, stub
\n
"
);
return
0
;
}
/*******************************************************************
* NamedEscape [GDI32.@]
*/
INT
WINAPI
NamedEscape
(
HDC
hdc
,
LPCWSTR
pDriver
,
INT
nEscape
,
INT
cbInput
,
LPCSTR
lpszInData
,
INT
cbOutput
,
LPSTR
lpszOutData
)
{
FIXME
(
"(%p, %s, %d, %d, %p, %d, %p)
\n
"
,
hdc
,
wine_dbgstr_w
(
pDriver
),
nEscape
,
cbInput
,
lpszInData
,
cbOutput
,
lpszOutData
);
return
0
;
}
dlls/gdi32/gdi32.spec
View file @
e670b01f
...
...
@@ -365,7 +365,7 @@
# @ stub MirrorRgn
@ stdcall ModifyWorldTransform(long ptr long)
@ stdcall MoveToEx(long long long ptr)
# @ stub NamedEscape
@ stdcall NamedEscape(long wstr long long ptr long ptr)
@ stdcall OffsetClipRgn(long long long)
@ stdcall OffsetRgn(long long long)
@ stdcall OffsetViewportOrgEx(long long long ptr)
...
...
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