Module: wine Branch: master Commit: ee2111b5d5c12635b13374414eb5d87ffd8758e4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ee2111b5d5c12635b13374414e...
Author: Francois Gouget fgouget@free.fr Date: Mon Jan 9 09:33:13 2012 +0100
jscript: Make some engine functions static.
---
dlls/jscript/engine.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/dlls/jscript/engine.c b/dlls/jscript/engine.c index af546ad..77fabe3 100644 --- a/dlls/jscript/engine.c +++ b/dlls/jscript/engine.c @@ -641,7 +641,7 @@ static HRESULT interp_forin(exec_ctx_t *ctx) }
/* ECMA-262 3rd Edition 12.10 */ -HRESULT interp_push_scope(exec_ctx_t *ctx) +static HRESULT interp_push_scope(exec_ctx_t *ctx) { IDispatch *disp; jsdisp_t *obj; @@ -669,7 +669,7 @@ HRESULT interp_push_scope(exec_ctx_t *ctx) }
/* ECMA-262 3rd Edition 12.10 */ -HRESULT interp_pop_scope(exec_ctx_t *ctx) +static HRESULT interp_pop_scope(exec_ctx_t *ctx) { TRACE("\n");
@@ -678,7 +678,7 @@ HRESULT interp_pop_scope(exec_ctx_t *ctx) }
/* ECMA-262 3rd Edition 12.12 */ -HRESULT interp_label(exec_ctx_t *ctx) +static HRESULT interp_label(exec_ctx_t *ctx) { FIXME("\n"); return E_NOTIMPL; @@ -1241,7 +1241,7 @@ static HRESULT interp_carray(exec_ctx_t *ctx) }
/* ECMA-262 3rd Edition 11.1.5 */ -HRESULT interp_new_obj(exec_ctx_t *ctx) +static HRESULT interp_new_obj(exec_ctx_t *ctx) { jsdisp_t *obj; VARIANT v; @@ -1258,7 +1258,7 @@ HRESULT interp_new_obj(exec_ctx_t *ctx) }
/* ECMA-262 3rd Edition 11.1.5 */ -HRESULT interp_obj_prop(exec_ctx_t *ctx) +static HRESULT interp_obj_prop(exec_ctx_t *ctx) { const BSTR name = ctx->parser->code->instrs[ctx->ip].arg1.bstr; jsdisp_t *obj;