Fixed a couple of WINAPI issues with 16-bit spec files (thanks to
Marcus Meissner).
diff --git a/memory/string.c b/memory/string.c
index 49dac01..1ae1135 100644
--- a/memory/string.c
+++ b/memory/string.c
@@ -30,6 +30,15 @@
/***********************************************************************
+ * hmemcpy16 (KERNEL.348)
+ */
+void WINAPI hmemcpy16( LPVOID dst, LPCVOID src, LONG count )
+{
+ memcpy( dst, src, count );
+}
+
+
+/***********************************************************************
* lstrcat16 (KERNEL.89)
*/
SEGPTR WINAPI lstrcat16( SEGPTR dst, LPCSTR src )