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
e2ed0c92
Commit
e2ed0c92
authored
Nov 08, 1998
by
Uwe Bonnes
Committed by
Alexandre Julliard
Nov 08, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a stub for StartDocA and EndDoc.
parent
577db37b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
painting.c
graphics/painting.c
+15
-0
gdi32.spec
relay32/gdi32.spec
+2
-2
No files found.
graphics/painting.c
View file @
e2ed0c92
...
...
@@ -25,6 +25,7 @@
#include "region.h"
#include "path.h"
#include "debug.h"
#include "winerror.h"
/***********************************************************************
* LineTo16 (GDI.19)
...
...
@@ -1142,3 +1143,17 @@ BOOL32 WINAPI PolyBezierTo32( HDC32 hdc, const POINT32* lppt, DWORD cPoints )
dc
->
funcs
->
pMoveToEx
(
dc
,
lppt
[
cPoints
].
x
,
lppt
[
cPoints
].
y
,
&
pt
);
return
ret
;
}
INT32
WINAPI
EndDoc32
(
HDC32
a
)
{
FIXME
(
gdi
,
"stub
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
/* failure*/
}
INT32
WINAPI
StartDoc32A
(
HDC32
hdc
,
const
DOCINFO32A
*
doc
)
{
FIXME
(
gdi
,
"stub
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
/* failure*/
}
relay32/gdi32.spec
View file @
e2ed0c92
...
...
@@ -78,7 +78,7 @@ init MAIN_GdiInit
73 stub DeviceCapabilitiesExW
74 stub DrawEscape
75 stdcall Ellipse(long long long long long) Ellipse32
76 st
ub EndDoc
76 st
dcall EndDoc(long) EndDoc32
77 stub EndPage
78 stdcall EndPath(long) EndPath32
79 stdcall EnumEnhMetaFile(long long ptr ptr ptr) EnumEnhMetaFile32
...
...
@@ -349,7 +349,7 @@ init MAIN_GdiInit
344 stdcall SetWindowExtEx(long long long ptr) SetWindowExtEx32
345 stdcall SetWindowOrgEx(long long long ptr) SetWindowOrgEx32
346 stdcall SetWorldTransform(long ptr) SetWorldTransform
347 st
ub StartDoc
A
347 st
dcall StartDocA(long ptr) StartDoc32
A
348 stub StartDocW
349 stub StartPage
350 stdcall StretchBlt(long long long long long long long long long long long) StretchBlt32
...
...
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