From: Bruno Jesus <00cpxxx@gmail.com> Subject: [PATCH] dinput: Add the 16-bit DLL version on acmGetVersion Message-Id: <20160824230954.2086-1-00cpxxx@gmail.com> Date: Wed, 24 Aug 2016 20:09:54 -0300 Remove the annoying message when Wine is configured as 3.11. The DLL version 2.1 number was tested on Windows 3.11. Source for test: http://alexa.pro.br/~bruno/wine/acm.c Compiled 16-bit EXE: http://alexa.pro.br/~bruno/wine/acm.exe Signed-off-by: Bruno Jesus <00cpxxx@gmail.com> --- dlls/msacm32/msacm32_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/msacm32/msacm32_main.c b/dlls/msacm32/msacm32_main.c index a47611c..efe58af 100644 --- a/dlls/msacm32/msacm32_main.c +++ b/dlls/msacm32/msacm32_main.c @@ -84,6 +84,8 @@ DWORD WINAPI acmGetVersion(void) switch (version.dwPlatformId) { case VER_PLATFORM_WIN32_NT: return 0x04000565; /* 4.0.1381 */ + case VER_PLATFORM_WIN32s: + return 0x02010000; /* 2.1 */ default: FIXME("%x not supported\n", version.dwPlatformId); /* fall through */ -- 2.9.3