msvcr100: Add ExternalContextBase::IsSynchronouslyBlocked() implementation.

This commit is contained in:
Piotr Caban 2023-04-14 12:55:50 +02:00 committed by Alexandre Julliard
parent dcccf544be
commit b96e7d34e4

View file

@ -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)