Piotr Caban : msvcr110: Fix critical_section_scoped_lock structure size.
Module: wine Branch: master Commit: c996b8a02f03da99c94c51ff9287242ae52fe49a URL: http://source.winehq.org/git/wine.git/?a=commit;h=c996b8a02f03da99c94c51ff92... Author: Piotr Caban <piotr(a)codeweavers.com> Date: Fri Jun 3 14:27:29 2016 +0200 msvcr110: Fix critical_section_scoped_lock structure size. Signed-off-by: Piotr Caban <piotr(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/msvcrt/lock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/msvcrt/lock.c b/dlls/msvcrt/lock.c index e69e1b9..d83425c 100644 --- a/dlls/msvcrt/lock.c +++ b/dlls/msvcrt/lock.c @@ -514,7 +514,8 @@ MSVCRT_bool __thiscall critical_section_try_lock_for( typedef struct { critical_section *cs; - void *unknown[3]; + void *unknown[4]; + int unknown2[2]; } critical_section_scoped_lock; /* ??0scoped_lock(a)critical_section@Concurrency@@QAE(a)AAV12@@Z */
participants (1)
-
Alexandre Julliard