Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
e2ed0c92
Commit
e2ed0c92
authored
26 years ago
by
Uwe Bonnes
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added a stub for StartDocA and EndDoc.
parent
577db37b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
graphics/painting.c
+15
-0
15 additions, 0 deletions
graphics/painting.c
relay32/gdi32.spec
+2
-2
2 additions, 2 deletions
relay32/gdi32.spec
with
17 additions
and
2 deletions
graphics/painting.c
+
15
−
0
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*/
}
This diff is collapsed.
Click to expand it.
relay32/gdi32.spec
+
2
−
2
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
StartDocA
347 st
dcall StartDocA(long ptr)
StartDoc
32
A
348 stub StartDocW
349 stub StartPage
350 stdcall StretchBlt(long long long long long long long long long long long) StretchBlt32
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment