diff --git a/files/d3d9-helper.patch b/files/d3d9-helper.patch --- a/files/d3d9-helper.patch +++ b/files/d3d9-helper.patch @@ -1,6 +1,6 @@ -From 1b441555922dc0d80699de41b52aa0fa51e65aaf Mon Sep 17 00:00:00 2001 +From 5ddf2f0c5e72b819bdc45cc64096fec81d9503ee Mon Sep 17 00:00:00 2001 From: Nick Sarnie -Date: Sun, 4 Mar 2018 12:55:12 -0500 +Date: Sat, 17 Mar 2018 19:16:55 -0400 Subject: [PATCH] D3D9 Helper Signed-off-by: Nick Sarnie @@ -18,10 +18,10 @@ create mode 100644 programs/winecfg/staging.c diff --git a/dlls/ntdll/loader.c b/dlls/ntdll/loader.c -index de2cc543bc..b8b990ba70 100644 +index fe5ce9d1e4..ebb7aea4d0 100644 --- a/dlls/ntdll/loader.c +++ b/dlls/ntdll/loader.c -@@ -99,6 +99,7 @@ struct builtin_load_info +@@ -100,6 +100,7 @@ struct builtin_load_info { const WCHAR *load_path; const WCHAR *filename; @@ -29,7 +29,7 @@ NTSTATUS status; WINE_MODREF *wm; }; -@@ -124,7 +125,8 @@ static WINE_MODREF *cached_modref; +@@ -125,7 +126,8 @@ static WINE_MODREF *cached_modref; static WINE_MODREF *current_modref; static WINE_MODREF *last_failed_modref; @@ -39,7 +39,7 @@ static NTSTATUS process_attach( WINE_MODREF *wm, LPVOID lpReserved ); static FARPROC find_ordinal_export( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports, DWORD exp_size, DWORD ordinal, LPCWSTR load_path ); -@@ -477,7 +479,7 @@ static FARPROC find_forwarded_export( HMODULE module, const char *forward, LPCWS +@@ -478,7 +480,7 @@ static FARPROC find_forwarded_export( HMODULE module, const char *forward, LPCWS if (!(wm = find_basename_module( mod_name ))) { TRACE( "delay loading %s for '%s'\n", debugstr_w(mod_name), forward ); @@ -48,7 +48,7 @@ !(wm->ldr.Flags & LDR_DONT_RESOLVE_REFS)) { if (!imports_fixup_done && current_modref) -@@ -647,7 +649,7 @@ static BOOL import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *descr, LP +@@ -649,7 +651,7 @@ static BOOL import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *descr, LP { ascii_to_unicode( buffer, name, len ); buffer[len] = 0; @@ -57,7 +57,7 @@ } else /* need to allocate a larger buffer */ { -@@ -655,7 +657,7 @@ static BOOL import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *descr, LP +@@ -657,7 +659,7 @@ static BOOL import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *descr, LP if (!ptr) return FALSE; ascii_to_unicode( ptr, name, len ); ptr[len] = 0; @@ -66,7 +66,7 @@ RtlFreeHeap( GetProcessHeap(), 0, ptr ); } -@@ -940,7 +942,7 @@ static NTSTATUS fixup_imports_ilonly( WINE_MODREF *wm, LPCWSTR load_path, void * +@@ -943,7 +945,7 @@ static NTSTATUS fixup_imports_ilonly( WINE_MODREF *wm, LPCWSTR load_path, void * prev = current_modref; current_modref = wm; @@ -75,7 +75,7 @@ current_modref = prev; if (status) { -@@ -1023,7 +1025,7 @@ static NTSTATUS fixup_imports( WINE_MODREF *wm, LPCWSTR load_path ) +@@ -1028,7 +1030,7 @@ static NTSTATUS fixup_imports( WINE_MODREF *wm, LPCWSTR load_path ) * Allocate a WINE_MODREF structure and add it to the process list * The loader_section must be locked while calling this function. */ @@ -84,7 +84,7 @@ { WINE_MODREF *wm; const WCHAR *p; -@@ -1037,7 +1039,7 @@ static WINE_MODREF *alloc_module( HMODULE hModule, LPCWSTR filename ) +@@ -1042,7 +1044,7 @@ static WINE_MODREF *alloc_module( HMODULE hModule, LPCWSTR filename ) wm->ldr.TlsIndex = -1; wm->ldr.LoadCount = 1; @@ -93,7 +93,7 @@ if ((p = strrchrW( wm->ldr.FullDllName.Buffer, '\\' ))) p++; else p = wm->ldr.FullDllName.Buffer; RtlInitUnicodeString( &wm->ldr.BaseDllName, p ); -@@ -1649,7 +1651,7 @@ static void load_builtin_callback( void *module, const char *filename ) +@@ -1654,7 +1656,7 @@ static void load_builtin_callback( void *module, const char *filename ) return; } @@ -102,7 +102,7 @@ RtlFreeHeap( GetProcessHeap(), 0, fullname ); if (!wm) { -@@ -1859,8 +1861,8 @@ static BOOL is_valid_binary( HMODULE module, const pe_image_info_t *info ) +@@ -1864,8 +1866,8 @@ static BOOL is_valid_binary( HMODULE module, const pe_image_info_t *info ) /****************************************************************************** * load_native_dll (internal) */ @@ -113,7 +113,7 @@ { void *module; HANDLE mapping; -@@ -1903,7 +1905,7 @@ static NTSTATUS load_native_dll( LPCWSTR load_path, LPCWSTR name, HANDLE file, +@@ -1908,7 +1910,7 @@ static NTSTATUS load_native_dll( LPCWSTR load_path, LPCWSTR name, HANDLE file, /* create the MODREF */ @@ -122,7 +122,7 @@ { if (module) NtUnmapViewOfSection( NtCurrentProcess(), module ); return STATUS_NO_MEMORY; -@@ -1967,8 +1969,8 @@ static NTSTATUS load_native_dll( LPCWSTR load_path, LPCWSTR name, HANDLE file, +@@ -1972,8 +1974,8 @@ static NTSTATUS load_native_dll( LPCWSTR load_path, LPCWSTR name, HANDLE file, /*********************************************************************** * load_builtin_dll */ @@ -133,7 +133,7 @@ { char error[256], dllname[MAX_PATH]; const WCHAR *name, *p; -@@ -1988,6 +1990,7 @@ static NTSTATUS load_builtin_dll( LPCWSTR load_path, LPCWSTR path, HANDLE file, +@@ -1993,6 +1995,7 @@ static NTSTATUS load_builtin_dll( LPCWSTR load_path, LPCWSTR path, HANDLE file, */ info.load_path = load_path; info.filename = NULL; @@ -141,7 +141,7 @@ info.status = STATUS_SUCCESS; info.wm = NULL; -@@ -2186,6 +2189,108 @@ done: +@@ -2191,6 +2194,108 @@ done: return status; } @@ -250,7 +250,7 @@ /*********************************************************************** * open_dll_file -@@ -2232,7 +2337,7 @@ static HANDLE open_dll_file( UNICODE_STRING *nt_name, WINE_MODREF **pwm, struct +@@ -2237,7 +2342,7 @@ static HANDLE open_dll_file( UNICODE_STRING *nt_name, WINE_MODREF **pwm, struct */ static NTSTATUS find_dll_file( const WCHAR *load_path, const WCHAR *libname, WCHAR *filename, ULONG *size, WINE_MODREF **pwm, @@ -259,7 +259,7 @@ { UNICODE_STRING nt_name; WCHAR *file_part, *ext, *dllname; -@@ -2277,20 +2382,41 @@ static NTSTATUS find_dll_file( const WCHAR *load_path, const WCHAR *libname, +@@ -2282,20 +2387,41 @@ static NTSTATUS find_dll_file( const WCHAR *load_path, const WCHAR *libname, if (RtlDetermineDosPathNameType_U( libname ) == RELATIVE_PATH) { @@ -305,7 +305,7 @@ } /* not found */ -@@ -2338,8 +2464,10 @@ overflow: +@@ -2343,8 +2469,10 @@ overflow: * Load a PE style module according to the load order. * The loader_section must be locked while calling this function. */ @@ -317,7 +317,7 @@ enum loadorder loadorder; WCHAR buffer[64]; WCHAR *filename; -@@ -2356,7 +2484,7 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_ +@@ -2361,7 +2489,7 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_ size = sizeof(buffer); for (;;) { @@ -326,7 +326,7 @@ if (nts == STATUS_SUCCESS) break; if (filename != buffer) RtlFreeHeap( GetProcessHeap(), 0, filename ); if (nts != STATUS_BUFFER_TOO_SMALL) return nts; -@@ -2376,6 +2504,25 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_ +@@ -2381,6 +2509,25 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_ } main_exe = get_modref( NtCurrentTeb()->Peb->ImageBaseAddress ); @@ -352,7 +352,7 @@ loadorder = get_load_order( main_exe ? main_exe->ldr.BaseDllName.Buffer : NULL, filename ); if (handle && is_fake_dll( handle )) -@@ -2398,22 +2545,22 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_ +@@ -2403,22 +2550,22 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_ if (!handle) nts = STATUS_DLL_NOT_FOUND; else { @@ -380,7 +380,7 @@ if (nts == STATUS_SUCCESS && loadorder == LO_DEFAULT && (MODULE_InitDLL( *pwm, DLL_WINE_PREATTACH, NULL ) != STATUS_SUCCESS)) { -@@ -2423,7 +2570,7 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_ +@@ -2428,7 +2575,7 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_ nts = STATUS_DLL_NOT_FOUND; } if (nts == STATUS_DLL_NOT_FOUND && loadorder != LO_BUILTIN) @@ -389,7 +389,7 @@ break; } -@@ -2456,7 +2603,7 @@ NTSTATUS WINAPI DECLSPEC_HOTPATCH LdrLoadDll(LPCWSTR path_name, DWORD flags, +@@ -2461,7 +2608,7 @@ NTSTATUS WINAPI DECLSPEC_HOTPATCH LdrLoadDll(LPCWSTR path_name, DWORD flags, RtlEnterCriticalSection( &loader_section ); if (!path_name) path_name = NtCurrentTeb()->Peb->ProcessParameters->DllPath.Buffer; @@ -398,7 +398,7 @@ if (nts == STATUS_SUCCESS && !(wm->ldr.Flags & LDR_DONT_RESOLVE_REFS)) { -@@ -2495,7 +2642,7 @@ NTSTATUS WINAPI LdrGetDllHandle( LPCWSTR load_path, ULONG flags, const UNICODE_S +@@ -2500,7 +2647,7 @@ NTSTATUS WINAPI LdrGetDllHandle( LPCWSTR load_path, ULONG flags, const UNICODE_S size = sizeof(buffer); for (;;) { @@ -407,7 +407,7 @@ if (handle) NtClose( handle ); if (filename != buffer) RtlFreeHeap( GetProcessHeap(), 0, filename ); if (status != STATUS_BUFFER_TOO_SMALL) break; -@@ -3420,7 +3567,7 @@ void __wine_process_init(void) +@@ -3422,7 +3569,7 @@ void __wine_process_init(void) /* setup the load callback and create ntdll modref */ wine_dll_set_callback( load_builtin_callback ); diff --git a/files/wine-d3d9.patch b/files/wine-d3d9.patch --- a/files/wine-d3d9.patch +++ b/files/wine-d3d9.patch @@ -1,6 +1,6 @@ -From 60db98243f61cf283510f81dfd5437d989602b3f Mon Sep 17 00:00:00 2001 +From aa019ab10a175cbbaacf00bd43270b79122685e6 Mon Sep 17 00:00:00 2001 From: Nick Sarnie -Date: Sun, 4 Mar 2018 12:17:42 -0500 +Date: Sat, 17 Mar 2018 19:14:34 -0400 Subject: [PATCH] Wine D3D9 Signed-off-by: Nick Sarnie @@ -41,7 +41,7 @@ create mode 100644 dlls/d3d9-nine/wndproc.h diff --git a/configure.ac b/configure.ac -index 3735c1695e..ed65e21469 100644 +index 04b79d2876..595b17f210 100644 --- a/configure.ac +++ b/configure.ac @@ -69,6 +69,14 @@ AC_ARG_WITH(openal, AS_HELP_STRING([--without-openal],[do not use OpenAL]), @@ -252,14 +252,14 @@ CPPFLAGS="$ac_save_CPPFLAGS" else X_CFLAGS="" -@@ -3189,6 +3376,7 @@ WINE_CONFIG_DLL(d3d8) - WINE_CONFIG_TEST(dlls/d3d8/tests) - WINE_CONFIG_DLL(d3d9) - WINE_CONFIG_TEST(dlls/d3d9/tests) -+WINE_CONFIG_DLL(d3d9-nine,,[implib]) - WINE_CONFIG_DLL(d3dcompiler_33) - WINE_CONFIG_DLL(d3dcompiler_34) - WINE_CONFIG_DLL(d3dcompiler_35) +@@ -3199,6 +3386,7 @@ WINE_CONFIG_MAKEFILE(dlls/d3d8) + WINE_CONFIG_MAKEFILE(dlls/d3d8/tests) + WINE_CONFIG_MAKEFILE(dlls/d3d9) + WINE_CONFIG_MAKEFILE(dlls/d3d9/tests) ++WINE_CONFIG_MAKEFILE(dlls/d3d9-nine) + WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_33) + WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_34) + WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_35) diff --git a/dlls/d3d9-nine/Makefile.in b/dlls/d3d9-nine/Makefile.in new file mode 100644 index 0000000000..c6df8d7dbe diff --git a/package.yml b/package.yml --- a/package.yml +++ b/package.yml @@ -1,8 +1,8 @@ name : wine -version : 3.3 -release : 35 +version : '3.4' +release : 36 source : - - https://dl.winehq.org/wine/source/3.x/wine-3.3.tar.xz : 0594bdb27bb3f9420dd8cbf3cb8c6a66712c155477837d726abd1e4ab50ca333 + - https://dl.winehq.org/wine/source/3.x/wine-3.4.tar.xz : a483247ac93f325d623a463438590b7355ec26c670af15d356b0ce6c46398e93 license : LGPL-2.1 component : virt summary : Wine compatibility layer for Windows emulation. diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml --- a/pspec_x86_64.xml +++ b/pspec_x86_64.xml @@ -79,6 +79,7 @@ /usr/lib64/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so /usr/lib64/wine/api-ms-win-core-kernel32-private-l1-1-1.dll.so + /usr/lib64/wine/api-ms-win-core-largeinteger-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-core-libraryloader-l1-1-1.dll.so /usr/lib64/wine/api-ms-win-core-libraryloader-l1-2-0.dll.so @@ -193,6 +194,7 @@ /usr/lib64/wine/api-ms-win-eventing-legacy-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-eventing-provider-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-eventlog-legacy-l1-1-0.dll.so + /usr/lib64/wine/api-ms-win-gdi-dpiinfo-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-mm-joystick-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-mm-misc-l1-1-1.dll.so /usr/lib64/wine/api-ms-win-mm-mme-l1-1-0.dll.so @@ -202,7 +204,13 @@ /usr/lib64/wine/api-ms-win-perf-legacy-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-power-base-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-power-setting-l1-1-0.dll.so + /usr/lib64/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so + /usr/lib64/wine/api-ms-win-rtcore-ntuser-private-l1-1-4.dll.so + /usr/lib64/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so + /usr/lib64/wine/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll.so + /usr/lib64/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll.so + /usr/lib64/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll.so /usr/lib64/wine/api-ms-win-security-activedirectoryclient-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-security-audit-l1-1-1.dll.so /usr/lib64/wine/api-ms-win-security-base-l1-1-0.dll.so @@ -225,7 +233,10 @@ /usr/lib64/wine/api-ms-win-service-private-l1-1-1.dll.so /usr/lib64/wine/api-ms-win-service-winsvc-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-service-winsvc-l1-2-0.dll.so + /usr/lib64/wine/api-ms-win-shcore-obsolete-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-shcore-scaling-l1-1-1.dll.so + /usr/lib64/wine/api-ms-win-shcore-stream-l1-1-0.dll.so + /usr/lib64/wine/api-ms-win-shcore-thread-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-shell-shellcom-l1-1-0.dll.so /usr/lib64/wine/api-ms-win-shell-shellfolders-l1-1-0.dll.so /usr/lib64/wine/apphelp.dll.so @@ -387,6 +398,7 @@ /usr/lib64/wine/explorerframe.dll.so /usr/lib64/wine/ext-ms-win-authz-context-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-domainjoin-netjoin-l1-1-0.dll.so + /usr/lib64/wine/ext-ms-win-dwmapi-ext-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-gdi-dc-create-l1-1-1.dll.so /usr/lib64/wine/ext-ms-win-gdi-dc-l1-2-0.dll.so /usr/lib64/wine/ext-ms-win-gdi-devcaps-l1-1-0.dll.so @@ -394,17 +406,30 @@ /usr/lib64/wine/ext-ms-win-gdi-render-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-kernel32-package-current-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-kernel32-package-l1-1-1.dll.so + /usr/lib64/wine/ext-ms-win-ntuser-draw-l1-1-0.dll.so + /usr/lib64/wine/ext-ms-win-ntuser-gui-l1-3-0.dll.so + /usr/lib64/wine/ext-ms-win-ntuser-keyboard-l1-3-0.dll.so /usr/lib64/wine/ext-ms-win-ntuser-message-l1-1-1.dll.so + /usr/lib64/wine/ext-ms-win-ntuser-misc-l1-5-1.dll.so + /usr/lib64/wine/ext-ms-win-ntuser-mouse-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-ntuser-private-l1-1-1.dll.so + /usr/lib64/wine/ext-ms-win-ntuser-private-l1-3-1.dll.so /usr/lib64/wine/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-ntuser-window-l1-1-1.dll.so + /usr/lib64/wine/ext-ms-win-ntuser-window-l1-1-4.dll.so /usr/lib64/wine/ext-ms-win-ntuser-windowclass-l1-1-1.dll.so + /usr/lib64/wine/ext-ms-win-oleacc-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-ras-rasapi32-l1-1-0.dll.so + /usr/lib64/wine/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-rtcore-gdi-object-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll.so + /usr/lib64/wine/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll.so + /usr/lib64/wine/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll.so + /usr/lib64/wine/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll.so + /usr/lib64/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-security-credui-l1-1-0.dll.so /usr/lib64/wine/ext-ms-win-security-cryptui-l1-1-0.dll.so @@ -466,6 +491,7 @@ /usr/lib64/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-1.dll /usr/lib64/wine/fakedlls/api-ms-win-core-kernel32-private-l1-1-1.dll + /usr/lib64/wine/fakedlls/api-ms-win-core-largeinteger-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-1.dll /usr/lib64/wine/fakedlls/api-ms-win-core-libraryloader-l1-2-0.dll @@ -580,6 +606,7 @@ /usr/lib64/wine/fakedlls/api-ms-win-eventing-legacy-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-eventing-provider-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-eventlog-legacy-l1-1-0.dll + /usr/lib64/wine/fakedlls/api-ms-win-gdi-dpiinfo-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-mm-joystick-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-mm-misc-l1-1-1.dll /usr/lib64/wine/fakedlls/api-ms-win-mm-mme-l1-1-0.dll @@ -589,7 +616,13 @@ /usr/lib64/wine/fakedlls/api-ms-win-perf-legacy-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-power-base-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-power-setting-l1-1-0.dll + /usr/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-0.dll + /usr/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-4.dll + /usr/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll + /usr/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll + /usr/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll + /usr/lib64/wine/fakedlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll /usr/lib64/wine/fakedlls/api-ms-win-security-activedirectoryclient-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-security-audit-l1-1-1.dll /usr/lib64/wine/fakedlls/api-ms-win-security-base-l1-1-0.dll @@ -612,7 +645,10 @@ /usr/lib64/wine/fakedlls/api-ms-win-service-private-l1-1-1.dll /usr/lib64/wine/fakedlls/api-ms-win-service-winsvc-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-service-winsvc-l1-2-0.dll + /usr/lib64/wine/fakedlls/api-ms-win-shcore-obsolete-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-shcore-scaling-l1-1-1.dll + /usr/lib64/wine/fakedlls/api-ms-win-shcore-stream-l1-1-0.dll + /usr/lib64/wine/fakedlls/api-ms-win-shcore-thread-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-shell-shellcom-l1-1-0.dll /usr/lib64/wine/fakedlls/api-ms-win-shell-shellfolders-l1-1-0.dll /usr/lib64/wine/fakedlls/apphelp.dll @@ -774,6 +810,7 @@ /usr/lib64/wine/fakedlls/explorerframe.dll /usr/lib64/wine/fakedlls/ext-ms-win-authz-context-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-domainjoin-netjoin-l1-1-0.dll + /usr/lib64/wine/fakedlls/ext-ms-win-dwmapi-ext-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-1.dll /usr/lib64/wine/fakedlls/ext-ms-win-gdi-dc-l1-2-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-gdi-devcaps-l1-1-0.dll @@ -781,17 +818,30 @@ /usr/lib64/wine/fakedlls/ext-ms-win-gdi-render-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-kernel32-package-current-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-kernel32-package-l1-1-1.dll + /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-draw-l1-1-0.dll + /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-gui-l1-3-0.dll + /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-keyboard-l1-3-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-1.dll + /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-misc-l1-5-1.dll + /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-mouse-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-private-l1-1-1.dll + /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-private-l1-3-1.dll /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-1.dll + /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-4.dll /usr/lib64/wine/fakedlls/ext-ms-win-ntuser-windowclass-l1-1-1.dll + /usr/lib64/wine/fakedlls/ext-ms-win-oleacc-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-ras-rasapi32-l1-1-0.dll + /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-object-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll + /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll + /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll + /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll + /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-security-credui-l1-1-0.dll /usr/lib64/wine/fakedlls/ext-ms-win-security-cryptui-l1-1-0.dll @@ -959,6 +1009,7 @@ /usr/lib64/wine/fakedlls/netstat.exe /usr/lib64/wine/fakedlls/newdev.dll /usr/lib64/wine/fakedlls/ngen.exe + /usr/lib64/wine/fakedlls/ninput.dll /usr/lib64/wine/fakedlls/normaliz.dll /usr/lib64/wine/fakedlls/notepad.exe /usr/lib64/wine/fakedlls/npmshtml.dll @@ -1556,6 +1607,7 @@ /usr/lib64/wine/netstat.exe.so /usr/lib64/wine/newdev.dll.so /usr/lib64/wine/ngen.exe.so + /usr/lib64/wine/ninput.dll.so /usr/lib64/wine/normaliz.dll.so /usr/lib64/wine/notepad.exe.so /usr/lib64/wine/npmshtml.dll.so @@ -1820,7 +1872,7 @@ emul32 - wine + wine /usr/bin/wine @@ -1835,8 +1887,8 @@ programming.devel - wine-32bit - wine-devel + wine-32bit + wine-devel /usr/lib32/lib*.so @@ -1849,7 +1901,7 @@ programming.devel - wine + wine /usr/include/ @@ -1857,12 +1909,12 @@ - - 2018-03-06 - 3.3 + + 2018-03-18 + 3.4 Packaging update Pierre-Yves pyu@riseup.net \ No newline at end of file