Fixed some issues found by winapi_check.

diff --git a/misc/registry.c b/misc/registry.c
index 438963a..9306d0b 100644
--- a/misc/registry.c
+++ b/misc/registry.c
@@ -1861,3 +1861,12 @@
     if (!count && (type==REG_SZ)) count = strlen(data);
     return RegSetValueExA( hkey, name, reserved, type, data, count );
 }
+
+/******************************************************************************
+ *           RegFlushKey16   [KERNEL.227]
+ */
+DWORD WINAPI RegFlushKey16( HKEY hkey )
+{
+    fix_win16_hkey( &hkey );
+    return RegFlushKey( hkey );
+}