jscript: Use bytecode for object literal implementation.
[wine] / dlls / jscript / jscript.h
1 /*
2  * Copyright 2008-2009 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include <stdarg.h>
20 #include <stdio.h>
21
22 #define COBJMACROS
23
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winuser.h"
27 #include "ole2.h"
28 #include "dispex.h"
29 #include "activscp.h"
30
31 #include "resource.h"
32
33 #include "wine/unicode.h"
34 #include "wine/list.h"
35
36 typedef struct _script_ctx_t script_ctx_t;
37 typedef struct _exec_ctx_t exec_ctx_t;
38 typedef struct _dispex_prop_t dispex_prop_t;
39
40 typedef struct {
41     EXCEPINFO ei;
42     VARIANT var;
43 } jsexcept_t;
44
45 typedef struct {
46     void **blocks;
47     DWORD block_cnt;
48     DWORD last_block;
49     DWORD offset;
50     BOOL mark;
51     struct list custom_blocks;
52 } jsheap_t;
53
54 void jsheap_init(jsheap_t*) DECLSPEC_HIDDEN;
55 void *jsheap_alloc(jsheap_t*,DWORD) __WINE_ALLOC_SIZE(2) DECLSPEC_HIDDEN;
56 void *jsheap_grow(jsheap_t*,void*,DWORD,DWORD) DECLSPEC_HIDDEN;
57 void jsheap_clear(jsheap_t*) DECLSPEC_HIDDEN;
58 void jsheap_free(jsheap_t*) DECLSPEC_HIDDEN;
59 jsheap_t *jsheap_mark(jsheap_t*) DECLSPEC_HIDDEN;
60
61 typedef struct jsdisp_t jsdisp_t;
62
63 extern HINSTANCE jscript_hinstance DECLSPEC_HIDDEN;
64
65 #define PROPF_ARGMASK 0x00ff
66 #define PROPF_METHOD  0x0100
67 #define PROPF_ENUM    0x0200
68 #define PROPF_CONSTR  0x0400
69 #define PROPF_CONST   0x0800
70
71 /* NOTE: Keep in sync with names in Object.toString implementation */
72 typedef enum {
73     JSCLASS_NONE,
74     JSCLASS_ARRAY,
75     JSCLASS_BOOLEAN,
76     JSCLASS_DATE,
77     JSCLASS_ERROR,
78     JSCLASS_FUNCTION,
79     JSCLASS_GLOBAL,
80     JSCLASS_MATH,
81     JSCLASS_NUMBER,
82     JSCLASS_OBJECT,
83     JSCLASS_REGEXP,
84     JSCLASS_STRING,
85     JSCLASS_ARGUMENTS,
86     JSCLASS_VBARRAY
87 } jsclass_t;
88
89 jsdisp_t *iface_to_jsdisp(IUnknown*) DECLSPEC_HIDDEN;
90
91 typedef struct {
92     union {
93         IDispatch *disp;
94         IDispatchEx *dispex;
95         jsdisp_t *jsdisp;
96     } u;
97     DWORD flags;
98 } vdisp_t;
99
100 #define VDISP_DISPEX  0x0001
101 #define VDISP_JSDISP  0x0002
102
103 static inline void vdisp_release(vdisp_t *vdisp)
104 {
105     IDispatch_Release(vdisp->u.disp);
106 }
107
108 static inline BOOL is_jsdisp(vdisp_t *vdisp)
109 {
110     return (vdisp->flags & VDISP_JSDISP) != 0;
111 }
112
113 static inline BOOL is_dispex(vdisp_t *vdisp)
114 {
115     return (vdisp->flags & VDISP_DISPEX) != 0;
116 }
117
118 static inline void set_jsdisp(vdisp_t *vdisp, jsdisp_t *jsdisp)
119 {
120     vdisp->u.jsdisp = jsdisp;
121     vdisp->flags = VDISP_JSDISP | VDISP_DISPEX;
122     IDispatch_AddRef(vdisp->u.disp);
123 }
124
125 static inline void set_disp(vdisp_t *vdisp, IDispatch *disp)
126 {
127     IDispatchEx *dispex;
128     jsdisp_t *jsdisp;
129     HRESULT hres;
130
131     jsdisp = iface_to_jsdisp((IUnknown*)disp);
132     if(jsdisp) {
133         vdisp->u.jsdisp = jsdisp;
134         vdisp->flags = VDISP_JSDISP | VDISP_DISPEX;
135         return;
136     }
137
138     hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
139     if(SUCCEEDED(hres)) {
140         vdisp->u.dispex = dispex;
141         vdisp->flags = VDISP_DISPEX;
142         return;
143     }
144
145     IDispatch_AddRef(disp);
146     vdisp->u.disp = disp;
147     vdisp->flags = 0;
148 }
149
150 static inline jsdisp_t *get_jsdisp(vdisp_t *vdisp)
151 {
152     return is_jsdisp(vdisp) ? vdisp->u.jsdisp : NULL;
153 }
154
155 typedef HRESULT (*builtin_invoke_t)(script_ctx_t*,vdisp_t*,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
156
157 typedef struct {
158     const WCHAR *name;
159     builtin_invoke_t invoke;
160     DWORD flags;
161 } builtin_prop_t;
162
163 typedef struct {
164     jsclass_t class;
165     builtin_prop_t value_prop;
166     DWORD props_cnt;
167     const builtin_prop_t *props;
168     void (*destructor)(jsdisp_t*);
169     void (*on_put)(jsdisp_t*,const WCHAR*);
170 } builtin_info_t;
171
172 struct jsdisp_t {
173     IDispatchEx IDispatchEx_iface;
174
175     LONG ref;
176
177     DWORD buf_size;
178     DWORD prop_cnt;
179     dispex_prop_t *props;
180     script_ctx_t *ctx;
181
182     jsdisp_t *prototype;
183
184     const builtin_info_t *builtin_info;
185 };
186
187 static inline IDispatch *to_disp(jsdisp_t *jsdisp)
188 {
189     return (IDispatch*)&jsdisp->IDispatchEx_iface;
190 }
191
192 jsdisp_t *as_jsdisp(IDispatch*);
193
194 static inline void jsdisp_addref(jsdisp_t *jsdisp)
195 {
196     IDispatchEx_AddRef(&jsdisp->IDispatchEx_iface);
197 }
198
199 static inline void jsdisp_release(jsdisp_t *jsdisp)
200 {
201     IDispatchEx_Release(&jsdisp->IDispatchEx_iface);
202 }
203
204 HRESULT create_dispex(script_ctx_t*,const builtin_info_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
205 HRESULT init_dispex(jsdisp_t*,script_ctx_t*,const builtin_info_t*,jsdisp_t*) DECLSPEC_HIDDEN;
206 HRESULT init_dispex_from_constr(jsdisp_t*,script_ctx_t*,const builtin_info_t*,jsdisp_t*) DECLSPEC_HIDDEN;
207
208 HRESULT disp_call(script_ctx_t*,IDispatch*,DISPID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
209 HRESULT jsdisp_call_value(jsdisp_t*,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
210 HRESULT jsdisp_call(jsdisp_t*,DISPID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
211 HRESULT jsdisp_call_name(jsdisp_t*,const WCHAR*,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
212 HRESULT disp_propget(script_ctx_t*,IDispatch*,DISPID,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
213 HRESULT disp_propput(script_ctx_t*,IDispatch*,DISPID,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
214 HRESULT jsdisp_propget(jsdisp_t*,DISPID,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
215 HRESULT jsdisp_propput_name(jsdisp_t*,const WCHAR*,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
216 HRESULT jsdisp_propput_const(jsdisp_t*,const WCHAR*,VARIANT*) DECLSPEC_HIDDEN;
217 HRESULT jsdisp_propput_idx(jsdisp_t*,DWORD,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
218 HRESULT jsdisp_propget_name(jsdisp_t*,LPCWSTR,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
219 HRESULT jsdisp_get_idx(jsdisp_t*,DWORD,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
220 HRESULT jsdisp_get_id(jsdisp_t*,const WCHAR*,DWORD,DISPID*) DECLSPEC_HIDDEN;
221 HRESULT jsdisp_delete_idx(jsdisp_t*,DWORD) DECLSPEC_HIDDEN;
222 VARIANT_BOOL jsdisp_is_own_prop(jsdisp_t *obj, BSTR name) DECLSPEC_HIDDEN;
223
224 HRESULT create_builtin_function(script_ctx_t*,builtin_invoke_t,const WCHAR*,const builtin_info_t*,DWORD,
225         jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
226 HRESULT Function_value(script_ctx_t*,vdisp_t*,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*) DECLSPEC_HIDDEN;
227
228 HRESULT throw_eval_error(script_ctx_t*,jsexcept_t*,HRESULT,const WCHAR*) DECLSPEC_HIDDEN;
229 HRESULT throw_generic_error(script_ctx_t*,jsexcept_t*,HRESULT,const WCHAR*) DECLSPEC_HIDDEN;
230 HRESULT throw_range_error(script_ctx_t*,jsexcept_t*,HRESULT,const WCHAR*) DECLSPEC_HIDDEN;
231 HRESULT throw_reference_error(script_ctx_t*,jsexcept_t*,HRESULT,const WCHAR*) DECLSPEC_HIDDEN;
232 HRESULT throw_regexp_error(script_ctx_t*,jsexcept_t*,HRESULT,const WCHAR*) DECLSPEC_HIDDEN;
233 HRESULT throw_syntax_error(script_ctx_t*,jsexcept_t*,HRESULT,const WCHAR*) DECLSPEC_HIDDEN;
234 HRESULT throw_type_error(script_ctx_t*,jsexcept_t*,HRESULT,const WCHAR*) DECLSPEC_HIDDEN;
235 HRESULT throw_uri_error(script_ctx_t*,jsexcept_t*,HRESULT,const WCHAR*) DECLSPEC_HIDDEN;
236
237 HRESULT create_object(script_ctx_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
238 HRESULT create_math(script_ctx_t*,jsdisp_t**) DECLSPEC_HIDDEN;
239 HRESULT create_array(script_ctx_t*,DWORD,jsdisp_t**) DECLSPEC_HIDDEN;
240 HRESULT create_regexp(script_ctx_t*,const WCHAR *,int,DWORD,jsdisp_t**) DECLSPEC_HIDDEN;
241 HRESULT create_regexp_var(script_ctx_t*,VARIANT*,VARIANT*,jsdisp_t**) DECLSPEC_HIDDEN;
242 HRESULT create_string(script_ctx_t*,const WCHAR*,DWORD,jsdisp_t**) DECLSPEC_HIDDEN;
243 HRESULT create_bool(script_ctx_t*,VARIANT_BOOL,jsdisp_t**) DECLSPEC_HIDDEN;
244 HRESULT create_number(script_ctx_t*,VARIANT*,jsdisp_t**) DECLSPEC_HIDDEN;
245 HRESULT create_vbarray(script_ctx_t*,SAFEARRAY*,jsdisp_t**) DECLSPEC_HIDDEN;
246
247 typedef enum {
248     NO_HINT,
249     HINT_STRING,
250     HINT_NUMBER
251 } hint_t;
252
253 HRESULT to_primitive(script_ctx_t*,VARIANT*,jsexcept_t*,VARIANT*, hint_t) DECLSPEC_HIDDEN;
254 HRESULT to_boolean(VARIANT*,VARIANT_BOOL*) DECLSPEC_HIDDEN;
255 HRESULT to_number(script_ctx_t*,VARIANT*,jsexcept_t*,VARIANT*) DECLSPEC_HIDDEN;
256 HRESULT to_integer(script_ctx_t*,VARIANT*,jsexcept_t*,VARIANT*) DECLSPEC_HIDDEN;
257 HRESULT to_int32(script_ctx_t*,VARIANT*,jsexcept_t*,INT*) DECLSPEC_HIDDEN;
258 HRESULT to_uint32(script_ctx_t*,VARIANT*,jsexcept_t*,DWORD*) DECLSPEC_HIDDEN;
259 HRESULT to_string(script_ctx_t*,VARIANT*,jsexcept_t*,BSTR*) DECLSPEC_HIDDEN;
260 HRESULT to_object(script_ctx_t*,VARIANT*,IDispatch**) DECLSPEC_HIDDEN;
261
262 BSTR int_to_bstr(int) DECLSPEC_HIDDEN;
263 HRESULT double_to_bstr(double,BSTR*) DECLSPEC_HIDDEN;
264
265 typedef struct named_item_t {
266     IDispatch *disp;
267     DWORD flags;
268     LPWSTR name;
269
270     struct named_item_t *next;
271 } named_item_t;
272
273 typedef struct _cc_var_t cc_var_t;
274
275 typedef struct {
276     cc_var_t *vars;
277 } cc_ctx_t;
278
279 void release_cc(cc_ctx_t*) DECLSPEC_HIDDEN;
280
281 struct _script_ctx_t {
282     LONG ref;
283
284     SCRIPTSTATE state;
285     exec_ctx_t *exec_ctx;
286     named_item_t *named_items;
287     IActiveScriptSite *site;
288     IInternetHostSecurityManager *secmgr;
289     DWORD safeopt;
290     DWORD version;
291     LCID lcid;
292     cc_ctx_t *cc;
293
294     jsheap_t tmp_heap;
295
296     IDispatch *host_global;
297
298     BSTR last_match;
299     DWORD last_match_index;
300     DWORD last_match_length;
301
302     jsdisp_t *global;
303     jsdisp_t *function_constr;
304     jsdisp_t *activex_constr;
305     jsdisp_t *array_constr;
306     jsdisp_t *bool_constr;
307     jsdisp_t *date_constr;
308     jsdisp_t *error_constr;
309     jsdisp_t *eval_error_constr;
310     jsdisp_t *range_error_constr;
311     jsdisp_t *reference_error_constr;
312     jsdisp_t *regexp_error_constr;
313     jsdisp_t *syntax_error_constr;
314     jsdisp_t *type_error_constr;
315     jsdisp_t *uri_error_constr;
316     jsdisp_t *number_constr;
317     jsdisp_t *object_constr;
318     jsdisp_t *regexp_constr;
319     jsdisp_t *string_constr;
320     jsdisp_t *vbarray_constr;
321 };
322
323 void script_release(script_ctx_t*) DECLSPEC_HIDDEN;
324
325 static inline void script_addref(script_ctx_t *ctx)
326 {
327     ctx->ref++;
328 }
329
330 HRESULT init_global(script_ctx_t*) DECLSPEC_HIDDEN;
331 HRESULT init_function_constr(script_ctx_t*,jsdisp_t*) DECLSPEC_HIDDEN;
332 HRESULT create_object_prototype(script_ctx_t*,jsdisp_t**) DECLSPEC_HIDDEN;
333
334 HRESULT create_activex_constr(script_ctx_t*,jsdisp_t**) DECLSPEC_HIDDEN;
335 HRESULT create_array_constr(script_ctx_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
336 HRESULT create_bool_constr(script_ctx_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
337 HRESULT create_date_constr(script_ctx_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
338 HRESULT init_error_constr(script_ctx_t*,jsdisp_t*) DECLSPEC_HIDDEN;
339 HRESULT create_number_constr(script_ctx_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
340 HRESULT create_object_constr(script_ctx_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
341 HRESULT create_regexp_constr(script_ctx_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
342 HRESULT create_string_constr(script_ctx_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
343 HRESULT create_vbarray_constr(script_ctx_t*,jsdisp_t*,jsdisp_t**) DECLSPEC_HIDDEN;
344
345 IUnknown *create_ax_site(script_ctx_t*) DECLSPEC_HIDDEN;
346
347 typedef struct {
348     const WCHAR *str;
349     DWORD len;
350 } match_result_t;
351
352 #define REM_CHECK_GLOBAL   0x0001
353 #define REM_RESET_INDEX    0x0002
354 #define REM_NO_CTX_UPDATE  0x0004
355 HRESULT regexp_match_next(script_ctx_t*,jsdisp_t*,DWORD,const WCHAR*,DWORD,const WCHAR**,match_result_t**,
356         DWORD*,DWORD*,match_result_t*) DECLSPEC_HIDDEN;
357 HRESULT regexp_match(script_ctx_t*,jsdisp_t*,const WCHAR*,DWORD,BOOL,match_result_t**,DWORD*) DECLSPEC_HIDDEN;
358 HRESULT parse_regexp_flags(const WCHAR*,DWORD,DWORD*) DECLSPEC_HIDDEN;
359 HRESULT regexp_string_match(script_ctx_t*,jsdisp_t*,BSTR,VARIANT*,jsexcept_t*) DECLSPEC_HIDDEN;
360
361 static inline VARIANT *get_arg(DISPPARAMS *dp, DWORD i)
362 {
363     return dp->rgvarg + dp->cArgs-i-1;
364 }
365
366 static inline DWORD arg_cnt(const DISPPARAMS *dp)
367 {
368     return dp->cArgs - dp->cNamedArgs;
369 }
370
371 static inline BOOL is_class(jsdisp_t *jsdisp, jsclass_t class)
372 {
373     return jsdisp->builtin_info->class == class;
374 }
375
376 static inline BOOL is_vclass(vdisp_t *vdisp, jsclass_t class)
377 {
378     return is_jsdisp(vdisp) && is_class(vdisp->u.jsdisp, class);
379 }
380
381 static inline BOOL is_num_vt(enum VARENUM vt)
382 {
383     return vt == VT_I4 || vt == VT_R8;
384 }
385
386 static inline DOUBLE num_val(const VARIANT *v)
387 {
388     return V_VT(v) == VT_I4 ? V_I4(v) : V_R8(v);
389 }
390
391 static inline void num_set_int(VARIANT *v, INT i)
392 {
393     V_VT(v) = VT_I4;
394     V_I4(v) = i;
395 }
396
397 static inline void num_set_val(VARIANT *v, DOUBLE d)
398 {
399     if(d == (DOUBLE)(INT)d) {
400         V_VT(v) = VT_I4;
401         V_I4(v) = d;
402     }else {
403         V_VT(v) = VT_R8;
404         V_R8(v) = d;
405     }
406 }
407
408 static inline void num_set_nan(VARIANT *v)
409 {
410     V_VT(v) = VT_R8;
411 #ifdef NAN
412     V_R8(v) = NAN;
413 #else
414     V_UI8(v) = (ULONGLONG)0x7ff80000<<32;
415 #endif
416 }
417
418 static inline DOUBLE ret_nan(void)
419 {
420     VARIANT v;
421     num_set_nan(&v);
422     return V_R8(&v);
423 }
424
425 static inline void num_set_inf(VARIANT *v, BOOL positive)
426 {
427     V_VT(v) = VT_R8;
428 #ifdef INFINITY
429     V_R8(v) = positive ? INFINITY : -INFINITY;
430 #else
431     V_UI8(v) = (ULONGLONG)0x7ff00000<<32;
432     if(!positive)
433         V_R8(v) = -V_R8(v);
434 #endif
435 }
436
437 static inline void var_set_jsdisp(VARIANT *v, jsdisp_t *jsdisp)
438 {
439     V_VT(v) = VT_DISPATCH;
440     V_DISPATCH(v) = to_disp(jsdisp);
441 }
442
443 static inline DWORD make_grfdex(script_ctx_t *ctx, DWORD flags)
444 {
445     return (ctx->version << 28) | flags;
446 }
447
448 #define FACILITY_JSCRIPT 10
449
450 #define MAKE_JSERROR(code) MAKE_HRESULT(SEVERITY_ERROR, FACILITY_JSCRIPT, code)
451
452 #define JS_E_TO_PRIMITIVE            MAKE_JSERROR(IDS_TO_PRIMITIVE)
453 #define JS_E_INVALIDARG              MAKE_JSERROR(IDS_INVALID_CALL_ARG)
454 #define JS_E_SUBSCRIPT_OUT_OF_RANGE  MAKE_JSERROR(IDS_SUBSCRIPT_OUT_OF_RANGE)
455 #define JS_E_OBJECT_REQUIRED         MAKE_JSERROR(IDS_OBJECT_REQUIRED)
456 #define JS_E_CANNOT_CREATE_OBJ       MAKE_JSERROR(IDS_CREATE_OBJ_ERROR)
457 #define JS_E_INVALID_PROPERTY        MAKE_JSERROR(IDS_NO_PROPERTY)
458 #define JS_E_INVALID_ACTION          MAKE_JSERROR(IDS_UNSUPPORTED_ACTION)
459 #define JS_E_MISSING_ARG             MAKE_JSERROR(IDS_ARG_NOT_OPT)
460 #define JS_E_SYNTAX                  MAKE_JSERROR(IDS_SYNTAX_ERROR)
461 #define JS_E_MISSING_SEMICOLON       MAKE_JSERROR(IDS_SEMICOLON)
462 #define JS_E_MISSING_LBRACKET        MAKE_JSERROR(IDS_LBRACKET)
463 #define JS_E_MISSING_RBRACKET        MAKE_JSERROR(IDS_RBRACKET)
464 #define JS_E_UNTERMINATED_STRING     MAKE_JSERROR(IDS_UNTERMINATED_STR)
465 #define JS_E_DISABLED_CC             MAKE_JSERROR(IDS_DISABLED_CC)
466 #define JS_E_FUNCTION_EXPECTED       MAKE_JSERROR(IDS_NOT_FUNC)
467 #define JS_E_DATE_EXPECTED           MAKE_JSERROR(IDS_NOT_DATE)
468 #define JS_E_NUMBER_EXPECTED         MAKE_JSERROR(IDS_NOT_NUM)
469 #define JS_E_OBJECT_EXPECTED         MAKE_JSERROR(IDS_OBJECT_EXPECTED)
470 #define JS_E_ILLEGAL_ASSIGN          MAKE_JSERROR(IDS_ILLEGAL_ASSIGN)
471 #define JS_E_UNDEFINED_VARIABLE      MAKE_JSERROR(IDS_UNDEFINED)
472 #define JS_E_BOOLEAN_EXPECTED        MAKE_JSERROR(IDS_NOT_BOOL)
473 #define JS_E_VBARRAY_EXPECTED        MAKE_JSERROR(IDS_NOT_VBARRAY)
474 #define JS_E_INVALID_DELETE          MAKE_JSERROR(IDS_INVALID_DELETE)
475 #define JS_E_JSCRIPT_EXPECTED        MAKE_JSERROR(IDS_JSCRIPT_EXPECTED)
476 #define JS_E_REGEXP_SYNTAX           MAKE_JSERROR(IDS_REGEXP_SYNTAX_ERROR)
477 #define JS_E_INVALID_URI_CODING      MAKE_JSERROR(IDS_URI_INVALID_CODING)
478 #define JS_E_INVALID_URI_CHAR        MAKE_JSERROR(IDS_URI_INVALID_CHAR)
479 #define JS_E_INVALID_LENGTH          MAKE_JSERROR(IDS_INVALID_LENGTH)
480 #define JS_E_ARRAY_EXPECTED          MAKE_JSERROR(IDS_ARRAY_EXPECTED)
481
482 static inline BOOL is_jscript_error(HRESULT hres)
483 {
484     return HRESULT_FACILITY(hres) == FACILITY_JSCRIPT;
485 }
486
487 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
488
489 HRESULT WINAPI JScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
490
491 extern LONG module_ref DECLSPEC_HIDDEN;
492
493 static inline void lock_module(void)
494 {
495     InterlockedIncrement(&module_ref);
496 }
497
498 static inline void unlock_module(void)
499 {
500     InterlockedDecrement(&module_ref);
501 }
502
503 static inline void *heap_alloc(size_t len)
504 {
505     return HeapAlloc(GetProcessHeap(), 0, len);
506 }
507
508 static inline void *heap_alloc_zero(size_t len)
509 {
510     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
511 }
512
513 static inline void *heap_realloc(void *mem, size_t len)
514 {
515     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
516 }
517
518 static inline BOOL heap_free(void *mem)
519 {
520     return HeapFree(GetProcessHeap(), 0, mem);
521 }
522
523 static inline LPWSTR heap_strdupW(LPCWSTR str)
524 {
525     LPWSTR ret = NULL;
526
527     if(str) {
528         DWORD size;
529
530         size = (strlenW(str)+1)*sizeof(WCHAR);
531         ret = heap_alloc(size);
532         memcpy(ret, str, size);
533     }
534
535     return ret;
536 }