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
900290aa
Commit
900290aa
authored
Oct 24, 1999
by
Patrik Stridvall
Committed by
Alexandre Julliard
Oct 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Win16 variants of existing Win32 functions.
parent
282b13bc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
77 additions
and
8 deletions
+77
-8
path.c
graphics/path.c
+61
-0
gdi.spec
if1632/gdi.spec
+8
-8
clipping.c
objects/clipping.c
+8
-0
No files found.
graphics/path.c
View file @
900290aa
...
...
@@ -299,6 +299,13 @@ INT WINAPI GetPath(HDC hdc, LPPOINT pPoints, LPBYTE pTypes,
}
}
/***********************************************************************
* PathToRegion16 (GDI.518)
*/
HRGN16
WINAPI
PathToRegion16
(
HDC16
hdc
)
{
return
(
HRGN16
)
PathToRegion
((
HDC
)
hdc
);
}
/***********************************************************************
* PathToRegion32 (GDI32.261)
...
...
@@ -337,6 +344,13 @@ HRGN WINAPI PathToRegion(HDC hdc)
return
hrgnRval
;
}
/***********************************************************************
* FillPath16 (GDI.515)
*/
BOOL16
WINAPI
FillPath16
(
HDC16
hdc
)
{
return
(
BOOL16
)
FillPath
((
HDC
)
hdc
);
}
/***********************************************************************
* FillPath32 (GDI32.100)
...
...
@@ -424,6 +438,13 @@ BOOL WINAPI FillPath(HDC hdc)
}
}
/***********************************************************************
* SelectClipPath16 (GDI.519)
*/
BOOL16
WINAPI
SelectClipPath16
(
HDC16
hdc
,
INT16
iMode
)
{
return
(
BOOL16
)
SelectClipPath
((
HDC
)
hdc
,
iMode
);
}
/***********************************************************************
* SelectClipPath32 (GDI32.296)
...
...
@@ -1126,6 +1147,16 @@ static void PATH_NormalizePoint(FLOAT_POINT corners[],
}
/*******************************************************************
* FlattenPath16 [GDI.516]
*
*
*/
BOOL16
WINAPI
FlattenPath16
(
HDC16
hdc
)
{
return
(
BOOL16
)
FlattenPath
((
HDC
)
hdc
);
}
/*******************************************************************
* FlattenPath32 [GDI32.103]
*
*
...
...
@@ -1137,6 +1168,16 @@ BOOL WINAPI FlattenPath(HDC hdc)
}
/*******************************************************************
* StrokeAndFillPath16 [GDI.520]
*
*
*/
BOOL16
WINAPI
StrokeAndFillPath16
(
HDC16
hdc
)
{
return
(
BOOL16
)
StrokeAndFillPath
((
HDC
)
hdc
);
}
/*******************************************************************
* StrokeAndFillPath [GDI32.352]
*
*
...
...
@@ -1148,6 +1189,16 @@ BOOL WINAPI StrokeAndFillPath(HDC hdc)
}
/*******************************************************************
* StrokePath16 [GDI.521]
*
*
*/
BOOL16
WINAPI
StrokePath16
(
HDC16
hdc
)
{
return
(
BOOL16
)
StrokePath
((
HDC
)
hdc
);
}
/*******************************************************************
* StrokePath [GDI32.353]
*
*
...
...
@@ -1159,6 +1210,16 @@ BOOL WINAPI StrokePath(HDC hdc)
}
/*******************************************************************
* WidenPath16 [GDI.522]
*
*
*/
BOOL16
WINAPI
WidenPath16
(
HDC16
hdc
)
{
return
(
BOOL16
)
WidenPath
((
HDC
)
hdc
);
}
/*******************************************************************
* WidenPath [GDI32.360]
*
*
...
...
if1632/gdi.spec
View file @
900290aa
...
...
@@ -331,19 +331,19 @@ file gdi.exe
504 stub PlayEnhMetafileRecord
505 stub SetEnhMetafileBits
506 stub SetMetaRgn
508
stub ExtSelectClipRgn
508
pascal16 ExtSelectClipRgn(word word word) ExtSelectClipRgn16
511 pascal16 AbortPath(word) AbortPath16
512 pascal16 BeginPath(word) BeginPath16
513 pascal16 CloseFigure(word) CloseFigure16
514 pascal16 EndPath(word) EndPath16
515
stub FillPath
516
stub FlattenPath
515
pascal16 FillPath(word) FillPath16
516
pascal16 FlattenPath(word) FlattenPath16
517 pascal16 GetPath(word ptr ptr word) GetPath16
518
stub PathToRegion
519
stub SelectClipPath
520
stub StrokeAndFillPath
521
stub StrokePath
522
stub WidenPath
518
pascal16 PathToRegion(word) PathToRegion16
519
pascal16 SelectClipPath(word word) SelectClipPath16
520
pascal16 StrokeAndFillPath(word) StrokeAndFillPath16
521
pascal16 StrokePath(word) StrokePath16
522
pascal16 WidenPath(word) WidenPath16
523 stub ExtCreatePen
524 pascal16 GetArcDirection(word) GetArcDirection16
525 pascal16 SetArcDirection(word word) SetArcDirection16
...
...
objects/clipping.c
View file @
900290aa
...
...
@@ -68,6 +68,14 @@ INT WINAPI SelectClipRgn( HDC hdc, HRGN hrgn )
}
/******************************************************************************
* ExtSelectClipRgn16 [GDI.508]
*/
INT16
WINAPI
ExtSelectClipRgn16
(
HDC16
hdc
,
HRGN16
hrgn
,
INT16
fnMode
)
{
return
(
INT16
)
ExtSelectClipRgn
((
HDC
)
hdc
,
(
HRGN
)
hrgn
,
fnMode
);
}
/******************************************************************************
* ExtSelectClipRgn [GDI32.97]
*/
INT
WINAPI
ExtSelectClipRgn
(
HDC
hdc
,
HRGN
hrgn
,
INT
fnMode
)
...
...
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