Piotr Caban : msvcr100: Add ExternalContextBase::IsSynchronouslyBlocked() implementation.
Module: wine Branch: master Commit: b96e7d34e4d4a26299cf7d716c0166b23dc3bdae URL: https://gitlab.winehq.org/wine/wine/-/commit/b96e7d34e4d4a26299cf7d716c0166b... Author: Piotr Caban <piotr(a)codeweavers.com> Date: Fri Apr 14 12:55:50 2023 +0200 msvcr100: Add ExternalContextBase::IsSynchronouslyBlocked() implementation. --- dlls/msvcrt/concurrency.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcrt/concurrency.c b/dlls/msvcrt/concurrency.c index 565b911425e..d7520ac308c 100644 --- a/dlls/msvcrt/concurrency.c +++ b/dlls/msvcrt/concurrency.c @@ -921,8 +921,8 @@ void __thiscall ExternalContextBase_Unblock(ExternalContextBase *this) DEFINE_THISCALL_WRAPPER(ExternalContextBase_IsSynchronouslyBlocked, 4) bool __thiscall ExternalContextBase_IsSynchronouslyBlocked(const ExternalContextBase *this) { - FIXME("(%p)->() stub\n", this); - return FALSE; + TRACE("(%p)->()\n", this); + return this->blocked >= 1; } DEFINE_THISCALL_WRAPPER(ExternalContextBase_Block, 4)
participants (1)
-
Alexandre Julliard