Moved 16-bit calls initialization and exception handling to kernel32.
Store the call_to_16 return address on the stack from the C code so
that we don't need two variants of call_to_16_regs.

diff --git a/dlls/kernel/kernel_main.c b/dlls/kernel/kernel_main.c
index c756968..34dd9b1 100644
--- a/dlls/kernel/kernel_main.c
+++ b/dlls/kernel/kernel_main.c
@@ -41,10 +41,10 @@
 #include "thread.h"
 #include "stackframe.h"
 #include "wincon.h"
+#include "kernel_private.h"
 #include "console_private.h"
 
 extern void LOCALE_Init(void);
-extern BOOL RELAY_Init(void);
 extern void COMPUTERNAME_Init(void);
 
 extern  int __wine_set_signal_handler(unsigned, int (*)(unsigned));
@@ -115,8 +115,8 @@
     /* Setup codepage info */
     LOCALE_Init();
 
-    /* Initialize relay entry points */
-    if (!RELAY_Init()) return FALSE;
+    /* Initialize 16-bit thunking entry points */
+    if (!WOWTHUNK_Init()) return FALSE;
 
     /* Initialize DOS memory */
     if (!DOSMEM_Init(0)) return FALSE;