mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 19:43:31 +08:00
[INSENG] Sync with Wine Staging 4.18. CORE-16441
This commit is contained in:
parent
089221f4e9
commit
bf833d29a7
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
#define COBJMACROS
|
#define COBJMACROS
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
|
|
||||||
#define COBJMACROS
|
#define COBJMACROS
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
@ -21,11 +21,14 @@
|
|||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
#include "winnls.h"
|
||||||
|
#endif
|
||||||
#include "ole2.h"
|
#include "ole2.h"
|
||||||
#include "rpcproxy.h"
|
#include "rpcproxy.h"
|
||||||
#include "inseng.h"
|
#include "inseng.h"
|
||||||
#include "wine/heap.h"
|
#include "wine/heap.h"
|
||||||
#include "wine/unicode.h"
|
|
||||||
|
|
||||||
static inline char *strdupA(const char *src)
|
static inline char *strdupA(const char *src)
|
||||||
{
|
{
|
||||||
@ -38,8 +41,8 @@ static inline WCHAR *strdupW(const WCHAR *src)
|
|||||||
{
|
{
|
||||||
WCHAR *dest;
|
WCHAR *dest;
|
||||||
if (!src) return NULL;
|
if (!src) return NULL;
|
||||||
dest = HeapAlloc(GetProcessHeap(), 0, (strlenW(src) + 1) * sizeof(WCHAR));
|
dest = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(src) + 1) * sizeof(WCHAR));
|
||||||
if (dest) strcpyW(dest, src);
|
if (dest) lstrcpyW(dest, src);
|
||||||
return dest;
|
return dest;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,8 +2,6 @@
|
|||||||
#ifndef _INSENG_PRECOMP_H
|
#ifndef _INSENG_PRECOMP_H
|
||||||
#define _INSENG_PRECOMP_H
|
#define _INSENG_PRECOMP_H
|
||||||
|
|
||||||
#include <wine/config.h>
|
|
||||||
|
|
||||||
#define WIN32_NO_STATUS
|
#define WIN32_NO_STATUS
|
||||||
#define _INC_WINDOWS
|
#define _INC_WINDOWS
|
||||||
#define COM_NO_WINDOWS_H
|
#define COM_NO_WINDOWS_H
|
||||||
|
@ -82,7 +82,7 @@ dll/win32/imm32 # Synced to WineStaging-4.18
|
|||||||
dll/win32/inetcomm # Synced to WineStaging-4.18
|
dll/win32/inetcomm # Synced to WineStaging-4.18
|
||||||
dll/win32/inetmib1 # Synced to WineStaging-4.18
|
dll/win32/inetmib1 # Synced to WineStaging-4.18
|
||||||
dll/win32/initpki # 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/iphlpapi # Out of sync
|
||||||
dll/win32/itircl # Synced to WineStaging-3.3
|
dll/win32/itircl # Synced to WineStaging-3.3
|
||||||
dll/win32/itss # Synced to WineStaging-3.17
|
dll/win32/itss # Synced to WineStaging-3.17
|
||||||
|
Loading…
Reference in New Issue
Block a user