jscript: Improve CollectGarbage stub.
This commit is contained in:
parent
e2d6b28a1b
commit
e29fd54292
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue