jscript: Improve CollectGarbage stub.

This commit is contained in:
Akihiro Sagawa 2014-06-19 23:16:39 +09:00 committed by Alexandre Julliard
parent e2d6b28a1b
commit e29fd54292
1 changed files with 4 additions and 2 deletions

View File

@ -753,8 +753,10 @@ static HRESULT JSGlobal_ScriptEngineBuildVersion(script_ctx_t *ctx, vdisp_t *jst
static HRESULT JSGlobal_CollectGarbage(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
jsval_t *r)
{
FIXME("\n");
return E_NOTIMPL;
static int once = 0;
if (!once++)
FIXME(": stub\n");
return S_OK;
}
static HRESULT JSGlobal_encodeURI(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,