[INSENG] Sync with Wine Staging 4.18. CORE-16441
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 2 Nov 2019 17:36:31 +0000 (18:36 +0100)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 2 Nov 2019 17:36:31 +0000 (18:36 +0100)
dll/win32/inseng/icif.c
dll/win32/inseng/inseng_main.c
dll/win32/inseng/inseng_private.h
dll/win32/inseng/precomp.h
media/doc/README.WINE

index f7bf0a0..6fd3562 100644 (file)
@@ -18,7 +18,7 @@
 
 #define COBJMACROS
 
-#include "config.h"
+
 
 #include <stdarg.h>
 #include <string.h>
index 8e2c481..213b27e 100644 (file)
@@ -21,7 +21,6 @@
 
 #define COBJMACROS
 
-#include "config.h"
 
 #include <stdarg.h>
 
index 60b6db9..ea99c23 100644 (file)
 #include "windef.h"
 #include "winbase.h"
 #include "winuser.h"
+#ifdef __REACTOS__
+#include "winnls.h"
+#endif
 #include "ole2.h"
 #include "rpcproxy.h"
 #include "inseng.h"
 #include "wine/heap.h"
-#include "wine/unicode.h"
+
 
 static inline char *strdupA(const char *src)
 {
@@ -38,8 +41,8 @@ static inline WCHAR *strdupW(const WCHAR *src)
 {
     WCHAR *dest;
     if (!src) return NULL;
-    dest = HeapAlloc(GetProcessHeap(), 0, (strlenW(src) + 1) * sizeof(WCHAR));
-    if (dest) strcpyW(dest, src);
+    dest = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(src) + 1) * sizeof(WCHAR));
+    if (dest) lstrcpyW(dest, src);
     return dest;
 }
 
index 18e2312..0a8943f 100644 (file)
@@ -2,8 +2,6 @@
 #ifndef _INSENG_PRECOMP_H
 #define _INSENG_PRECOMP_H
 
-#include <wine/config.h>
-
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
index cbeb18f..f0c3164 100644 (file)
@@ -82,7 +82,7 @@ dll/win32/imm32               # Synced to WineStaging-4.18
 dll/win32/inetcomm            # Synced to WineStaging-4.18
 dll/win32/inetmib1            # Synced to WineStaging-4.18
 dll/win32/initpki             # Synced to WineStaging-4.18
-dll/win32/inseng              # Synced to WineStaging-3.3
+dll/win32/inseng              # Synced to WineStaging-4.18
 dll/win32/iphlpapi            # Out of sync
 dll/win32/itircl              # Synced to WineStaging-3.3
 dll/win32/itss                # Synced to WineStaging-3.17