Commit 92e75061 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcr100: Add Context::Block() implementation.

parent 08ed6b1d
......@@ -72,6 +72,8 @@ typedef struct {
bool, (const Context*), (this))
#define call_Context_dtor(this, flags) CALL_VTBL_FUNC(this, 20, \
Context*, (Context*, unsigned int), (this, flags))
#define call_Context_Block(this) CALL_VTBL_FUNC(this, 24, \
void, (Context*), (this))
typedef struct {
Context *context;
......@@ -824,7 +826,9 @@ unsigned int __cdecl Context_Id(void)
/* ?Block@Context@Concurrency@@SAXXZ */
void __cdecl Context_Block(void)
{
FIXME("()\n");
Context *ctx = get_current_context();
TRACE("()\n");
call_Context_Block(ctx);
}
/* ?Yield@Context@Concurrency@@SAXXZ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment