Large-scale renaming of all Win32 functions and types to use the
standard Windows names.

diff --git a/misc/error.c b/misc/error.c
index d8ef9a6..f30b34e 100644
--- a/misc/error.c
+++ b/misc/error.c
@@ -138,7 +138,7 @@
 /***********************************************************************
 *	LogError (KERNEL.324)
 */
-VOID WINAPI LogError(UINT16 uErr, LPVOID lpvInfo)
+VOID WINAPI LogError16(UINT16 uErr, LPVOID lpvInfo)
 {
 	MSG("(%s, %p)\n", GetErrorString(uErr), lpvInfo);
 }
@@ -147,7 +147,7 @@
 /***********************************************************************
 *	LogParamError (KERNEL.325)
 */
-void WINAPI LogParamError(UINT16 uErr, FARPROC16 lpfn, LPVOID lpvParam)
+void WINAPI LogParamError16(UINT16 uErr, FARPROC16 lpfn, LPVOID lpvParam)
 {
 	/* FIXME: is it possible to get the module name/function
 	 * from the lpfn param?
@@ -166,7 +166,7 @@
         LPVOID lpvParam = (LPVOID)MAKELONG( AX_reg( context ), 
                                             CX_reg( context ) );
 	
-	LogParamError( uErr, lpfn, lpvParam );
+	LogParamError16( uErr, lpfn, lpvParam );
 
 	if (!(uErr & ERR_WARNING))
 	{