https://git.reactos.org/?p=reactos.git;a=commitdiff;h=669d6b445bdf3c2074626…
commit 669d6b445bdf3c20746268efea00c730c6b74706
Author: Serge Gautherie <reactos-git_serge_171003(a)gautherie.fr>
AuthorDate: Thu Jul 19 18:45:32 2018 +0200
Commit: Mark Jansen <mark.jansen(a)reactos.org>
CommitDate: Fri Aug 17 16:21:30 2018 +0200
[SHELL32_WINETEST] Fix 2 MSVC warnings about flags
- "...\ebrowser.c(1188) : warning C4133: 'function' : incompatible types
- from 'DWORD *' to 'EXPLORER_BROWSER_OPTIONS *'"
- "...\ebrowser.c(1198) : warning C4133: 'function' : incompatible types
- from 'DWORD *' to 'EXPLORER_BROWSER_OPTIONS *'"
Cherry-pick
https://source.winehq.org/git/wine.git/commit/535f2f9e663b7b3db3147960942d3…
CORE-7538
---
modules/rostests/winetests/shell32/ebrowser.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/rostests/winetests/shell32/ebrowser.c
b/modules/rostests/winetests/shell32/ebrowser.c
index 3e89b90439..28219e8817 100644
--- a/modules/rostests/winetests/shell32/ebrowser.c
+++ b/modules/rostests/winetests/shell32/ebrowser.c
@@ -1102,7 +1102,7 @@ static void test_basics(void)
IShellBrowser *psb;
FOLDERSETTINGS fs;
ULONG lres;
- DWORD flags;
+ EXPLORER_BROWSER_OPTIONS flags;
HDWP hdwp;
RECT rc;
HRESULT hr;