Added Win16 variants of existing Win32 functions.
diff --git a/graphics/path.c b/graphics/path.c
index 147a921..b7023bf 100644
--- a/graphics/path.c
+++ b/graphics/path.c
@@ -299,6 +299,13 @@
}
}
+/***********************************************************************
+ * PathToRegion16 (GDI.518)
+ */
+HRGN16 WINAPI PathToRegion16(HDC16 hdc)
+{
+ return (HRGN16) PathToRegion((HDC) hdc);
+}
/***********************************************************************
* PathToRegion32 (GDI32.261)
@@ -337,6 +344,13 @@
return hrgnRval;
}
+/***********************************************************************
+ * FillPath16 (GDI.515)
+ */
+BOOL16 WINAPI FillPath16(HDC16 hdc)
+{
+ return (BOOL16) FillPath((HDC) hdc);
+}
/***********************************************************************
* FillPath32 (GDI32.100)
@@ -424,6 +438,13 @@
}
}
+/***********************************************************************
+ * SelectClipPath16 (GDI.519)
+ */
+BOOL16 WINAPI SelectClipPath16(HDC16 hdc, INT16 iMode)
+{
+ return (BOOL16) SelectClipPath((HDC) hdc, iMode);
+}
/***********************************************************************
* SelectClipPath32 (GDI32.296)
@@ -1126,6 +1147,16 @@
}
/*******************************************************************
+ * FlattenPath16 [GDI.516]
+ *
+ *
+ */
+BOOL16 WINAPI FlattenPath16(HDC16 hdc)
+{
+ return (BOOL16) FlattenPath((HDC) hdc);
+}
+
+/*******************************************************************
* FlattenPath32 [GDI32.103]
*
*
@@ -1137,6 +1168,16 @@
}
/*******************************************************************
+ * StrokeAndFillPath16 [GDI.520]
+ *
+ *
+ */
+BOOL16 WINAPI StrokeAndFillPath16(HDC16 hdc)
+{
+ return (BOOL16) StrokeAndFillPath((HDC) hdc);
+}
+
+/*******************************************************************
* StrokeAndFillPath [GDI32.352]
*
*
@@ -1148,6 +1189,16 @@
}
/*******************************************************************
+ * StrokePath16 [GDI.521]
+ *
+ *
+ */
+BOOL16 WINAPI StrokePath16(HDC16 hdc)
+{
+ return (BOOL16) StrokePath((HDC) hdc);
+}
+
+/*******************************************************************
* StrokePath [GDI32.353]
*
*
@@ -1159,6 +1210,16 @@
}
/*******************************************************************
+ * WidenPath16 [GDI.522]
+ *
+ *
+ */
+BOOL16 WINAPI WidenPath16(HDC16 hdc)
+{
+ return (BOOL16) WidenPath((HDC) hdc);
+}
+
+/*******************************************************************
* WidenPath [GDI32.360]
*
*
diff --git a/if1632/gdi.spec b/if1632/gdi.spec
index 9bfee33..adde2c4 100644
--- a/if1632/gdi.spec
+++ b/if1632/gdi.spec
@@ -331,19 +331,19 @@
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
diff --git a/objects/clipping.c b/objects/clipping.c
index 0484e3e..72affae 100644
--- a/objects/clipping.c
+++ b/objects/clipping.c
@@ -68,6 +68,14 @@
}
/******************************************************************************
+ * 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 )