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
87d95b7b
Commit
87d95b7b
authored
Sep 19, 1999
by
Peter Ganten
Committed by
Alexandre Julliard
Sep 19, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for PolyTextOutA/W.
parent
c73a1fd6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
2 deletions
+36
-2
wingdi.h
include/wingdi.h
+3
-0
text.c
objects/text.c
+31
-0
gdi32.spec
relay32/gdi32.spec
+2
-2
No files found.
include/wingdi.h
View file @
87d95b7b
...
...
@@ -3355,6 +3355,9 @@ BOOL WINAPI TranslateCharsetInfo(LPDWORD,LPCHARSETINFO,DWORD);
BOOL
WINAPI
UnrealizeObject
(
HGDIOBJ
);
BOOL
WINAPI
UpdateColors
(
HDC
);
BOOL
WINAPI
WidenPath
(
HDC
);
BOOL
WINAPI
PolyTextOutA
(
HDC
,
PPOLYTEXTA
,
INT
);
BOOL
WINAPI
PolyTextOutW
(
HDC
,
PPOLYTEXTW
,
INT
);
#define PolyTextOut WINELIB_NAME_AW(PolyTextOut)
#ifdef __cplusplus
}
...
...
objects/text.c
View file @
87d95b7b
...
...
@@ -10,6 +10,7 @@
#include "wine/winuser16.h"
#include "winbase.h"
#include "winuser.h"
#include "winerror.h"
#include "dc.h"
#include "gdi.h"
#include "heap.h"
...
...
@@ -782,3 +783,33 @@ UINT WINAPI GetTextCharsetInfo(
}
return
charSet
;
}
/***********************************************************************
* PolyTextOutA [GDI.402] Draw several Strings
*/
BOOL
WINAPI
PolyTextOutA
(
HDC
hdc
,
/* Handle to device context */
PPOLYTEXTA
pptxt
,
/* array of strings */
INT
cStrings
/* Number of strings in array */
)
{
FIXME
(
"stub!
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* PolyTextOutW [GDI.403] Draw several Strings
*/
BOOL
WINAPI
PolyTextOutW
(
HDC
hdc
,
/* Handle to device context */
PPOLYTEXTW
pptxt
,
/* array of strings */
INT
cStrings
/* Number of strings in array */
)
{
FIXME
(
"stub!
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
relay32/gdi32.spec
View file @
87d95b7b
...
...
@@ -304,8 +304,8 @@ init MAIN_GdiInit
399 stdcall PolyDraw(long ptr ptr long) PolyDraw
400 stdcall PolyPolygon(long ptr ptr long) PolyPolygon
401 stdcall PolyPolyline(long ptr ptr long) PolyPolyline
402 st
ub
PolyTextOutA
403 st
ub
PolyTextOutW
402 st
dcall PolyTextOutA(long ptr long)
PolyTextOutA
403 st
dcall PolyTextOutW(long ptr long)
PolyTextOutW
404 stdcall Polygon(long ptr long) Polygon
405 stdcall Polyline(long ptr long) Polyline
406 stdcall PolylineTo(long ptr long) PolylineTo
...
...
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