2 * Copyright 2008-2009 Jacek Caban for CodeWeavers
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.
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.
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
33 #include "wine/unicode.h"
34 #include "wine/list.h"
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
;
51 struct list custom_blocks
;
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
;
61 typedef struct jsdisp_t jsdisp_t
;
63 extern HINSTANCE jscript_hinstance DECLSPEC_HIDDEN
;
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
71 /* NOTE: Keep in sync with names in Object.toString implementation */
89 jsdisp_t
*iface_to_jsdisp(IUnknown
*) DECLSPEC_HIDDEN
;
100 #define VDISP_DISPEX 0x0001
101 #define VDISP_JSDISP 0x0002
103 static inline void vdisp_release(vdisp_t
*vdisp
)
105 IDispatch_Release(vdisp
->u
.disp
);
108 static inline BOOL
is_jsdisp(vdisp_t
*vdisp
)
110 return (vdisp
->flags
& VDISP_JSDISP
) != 0;
113 static inline BOOL
is_dispex(vdisp_t
*vdisp
)
115 return (vdisp
->flags
& VDISP_DISPEX
) != 0;
118 static inline void set_jsdisp(vdisp_t
*vdisp
, jsdisp_t
*jsdisp
)
120 vdisp
->u
.jsdisp
= jsdisp
;
121 vdisp
->flags
= VDISP_JSDISP
| VDISP_DISPEX
;
122 IDispatch_AddRef(vdisp
->u
.disp
);
125 static inline void set_disp(vdisp_t
*vdisp
, IDispatch
*disp
)
131 jsdisp
= iface_to_jsdisp((IUnknown
*)disp
);
133 vdisp
->u
.jsdisp
= jsdisp
;
134 vdisp
->flags
= VDISP_JSDISP
| VDISP_DISPEX
;
138 hres
= IDispatch_QueryInterface(disp
, &IID_IDispatchEx
, (void**)&dispex
);
139 if(SUCCEEDED(hres
)) {
140 vdisp
->u
.dispex
= dispex
;
141 vdisp
->flags
= VDISP_DISPEX
;
145 IDispatch_AddRef(disp
);
146 vdisp
->u
.disp
= disp
;
150 static inline jsdisp_t
*get_jsdisp(vdisp_t
*vdisp
)
152 return is_jsdisp(vdisp
) ? vdisp
->u
.jsdisp
: NULL
;
155 typedef HRESULT (*builtin_invoke_t
)(script_ctx_t
*,vdisp_t
*,WORD
,DISPPARAMS
*,VARIANT
*,jsexcept_t
*);
159 builtin_invoke_t invoke
;
165 builtin_prop_t value_prop
;
167 const builtin_prop_t
*props
;
168 void (*destructor
)(jsdisp_t
*);
169 void (*on_put
)(jsdisp_t
*,const WCHAR
*);
173 IDispatchEx IDispatchEx_iface
;
179 dispex_prop_t
*props
;
184 const builtin_info_t
*builtin_info
;
187 static inline IDispatch
*to_disp(jsdisp_t
*jsdisp
)
189 return (IDispatch
*)&jsdisp
->IDispatchEx_iface
;
192 jsdisp_t
*as_jsdisp(IDispatch
*) DECLSPEC_HIDDEN
;
193 jsdisp_t
*to_jsdisp(IDispatch
*) DECLSPEC_HIDDEN
;
195 static inline void jsdisp_addref(jsdisp_t
*jsdisp
)
197 IDispatchEx_AddRef(&jsdisp
->IDispatchEx_iface
);
200 static inline void jsdisp_release(jsdisp_t
*jsdisp
)
202 IDispatchEx_Release(&jsdisp
->IDispatchEx_iface
);
205 HRESULT
create_dispex(script_ctx_t
*,const builtin_info_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
206 HRESULT
init_dispex(jsdisp_t
*,script_ctx_t
*,const builtin_info_t
*,jsdisp_t
*) DECLSPEC_HIDDEN
;
207 HRESULT
init_dispex_from_constr(jsdisp_t
*,script_ctx_t
*,const builtin_info_t
*,jsdisp_t
*) DECLSPEC_HIDDEN
;
209 HRESULT
disp_call(script_ctx_t
*,IDispatch
*,DISPID
,WORD
,DISPPARAMS
*,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
210 HRESULT
jsdisp_call_value(jsdisp_t
*,WORD
,DISPPARAMS
*,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
211 HRESULT
jsdisp_call(jsdisp_t
*,DISPID
,WORD
,DISPPARAMS
*,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
212 HRESULT
jsdisp_call_name(jsdisp_t
*,const WCHAR
*,WORD
,DISPPARAMS
*,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
213 HRESULT
disp_propget(script_ctx_t
*,IDispatch
*,DISPID
,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
214 HRESULT
disp_propput(script_ctx_t
*,IDispatch
*,DISPID
,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
215 HRESULT
jsdisp_propget(jsdisp_t
*,DISPID
,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
216 HRESULT
jsdisp_propput_name(jsdisp_t
*,const WCHAR
*,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
217 HRESULT
jsdisp_propput_const(jsdisp_t
*,const WCHAR
*,VARIANT
*) DECLSPEC_HIDDEN
;
218 HRESULT
jsdisp_propput_idx(jsdisp_t
*,DWORD
,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
219 HRESULT
jsdisp_propget_name(jsdisp_t
*,LPCWSTR
,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
220 HRESULT
jsdisp_get_idx(jsdisp_t
*,DWORD
,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
221 HRESULT
jsdisp_get_id(jsdisp_t
*,const WCHAR
*,DWORD
,DISPID
*) DECLSPEC_HIDDEN
;
222 HRESULT
jsdisp_delete_idx(jsdisp_t
*,DWORD
) DECLSPEC_HIDDEN
;
223 VARIANT_BOOL
jsdisp_is_own_prop(jsdisp_t
*obj
, BSTR name
) DECLSPEC_HIDDEN
;
225 HRESULT
create_builtin_function(script_ctx_t
*,builtin_invoke_t
,const WCHAR
*,const builtin_info_t
*,DWORD
,
226 jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
227 HRESULT
Function_value(script_ctx_t
*,vdisp_t
*,WORD
,DISPPARAMS
*,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
229 HRESULT
throw_eval_error(script_ctx_t
*,jsexcept_t
*,HRESULT
,const WCHAR
*) DECLSPEC_HIDDEN
;
230 HRESULT
throw_generic_error(script_ctx_t
*,jsexcept_t
*,HRESULT
,const WCHAR
*) DECLSPEC_HIDDEN
;
231 HRESULT
throw_range_error(script_ctx_t
*,jsexcept_t
*,HRESULT
,const WCHAR
*) DECLSPEC_HIDDEN
;
232 HRESULT
throw_reference_error(script_ctx_t
*,jsexcept_t
*,HRESULT
,const WCHAR
*) DECLSPEC_HIDDEN
;
233 HRESULT
throw_regexp_error(script_ctx_t
*,jsexcept_t
*,HRESULT
,const WCHAR
*) DECLSPEC_HIDDEN
;
234 HRESULT
throw_syntax_error(script_ctx_t
*,jsexcept_t
*,HRESULT
,const WCHAR
*) DECLSPEC_HIDDEN
;
235 HRESULT
throw_type_error(script_ctx_t
*,jsexcept_t
*,HRESULT
,const WCHAR
*) DECLSPEC_HIDDEN
;
236 HRESULT
throw_uri_error(script_ctx_t
*,jsexcept_t
*,HRESULT
,const WCHAR
*) DECLSPEC_HIDDEN
;
238 HRESULT
create_object(script_ctx_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
239 HRESULT
create_math(script_ctx_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
240 HRESULT
create_array(script_ctx_t
*,DWORD
,jsdisp_t
**) DECLSPEC_HIDDEN
;
241 HRESULT
create_regexp(script_ctx_t
*,const WCHAR
*,int,DWORD
,jsdisp_t
**) DECLSPEC_HIDDEN
;
242 HRESULT
create_regexp_var(script_ctx_t
*,VARIANT
*,VARIANT
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
243 HRESULT
create_string(script_ctx_t
*,const WCHAR
*,DWORD
,jsdisp_t
**) DECLSPEC_HIDDEN
;
244 HRESULT
create_bool(script_ctx_t
*,VARIANT_BOOL
,jsdisp_t
**) DECLSPEC_HIDDEN
;
245 HRESULT
create_number(script_ctx_t
*,double,jsdisp_t
**) DECLSPEC_HIDDEN
;
246 HRESULT
create_vbarray(script_ctx_t
*,SAFEARRAY
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
254 HRESULT
to_primitive(script_ctx_t
*,VARIANT
*,jsexcept_t
*,VARIANT
*, hint_t
) DECLSPEC_HIDDEN
;
255 HRESULT
to_boolean(VARIANT
*,VARIANT_BOOL
*) DECLSPEC_HIDDEN
;
256 HRESULT
to_number(script_ctx_t
*,VARIANT
*,jsexcept_t
*,double*) DECLSPEC_HIDDEN
;
257 HRESULT
to_integer(script_ctx_t
*,VARIANT
*,jsexcept_t
*,double*) DECLSPEC_HIDDEN
;
258 HRESULT
to_int32(script_ctx_t
*,VARIANT
*,jsexcept_t
*,INT
*) DECLSPEC_HIDDEN
;
259 HRESULT
to_uint32(script_ctx_t
*,VARIANT
*,jsexcept_t
*,DWORD
*) DECLSPEC_HIDDEN
;
260 HRESULT
to_string(script_ctx_t
*,VARIANT
*,jsexcept_t
*,BSTR
*) DECLSPEC_HIDDEN
;
261 HRESULT
to_object(script_ctx_t
*,VARIANT
*,IDispatch
**) DECLSPEC_HIDDEN
;
263 HRESULT
variant_change_type(script_ctx_t
*,VARIANT
*,VARIANT
*,VARTYPE
) DECLSPEC_HIDDEN
;
265 HRESULT
decode_source(WCHAR
*) DECLSPEC_HIDDEN
;
267 BSTR
int_to_bstr(int) DECLSPEC_HIDDEN
;
268 HRESULT
double_to_bstr(double,BSTR
*) DECLSPEC_HIDDEN
;
270 typedef struct named_item_t
{
275 struct named_item_t
*next
;
278 typedef struct _cc_var_t cc_var_t
;
284 void release_cc(cc_ctx_t
*) DECLSPEC_HIDDEN
;
287 IServiceProvider IServiceProvider_iface
;
294 struct _script_ctx_t
{
298 IActiveScript
*active_script
;
300 exec_ctx_t
*exec_ctx
;
301 named_item_t
*named_items
;
302 IActiveScriptSite
*site
;
303 IInternetHostSecurityManager
*secmgr
;
312 IDispatch
*host_global
;
315 DWORD last_match_index
;
316 DWORD last_match_length
;
319 jsdisp_t
*function_constr
;
320 jsdisp_t
*activex_constr
;
321 jsdisp_t
*array_constr
;
322 jsdisp_t
*bool_constr
;
323 jsdisp_t
*date_constr
;
324 jsdisp_t
*error_constr
;
325 jsdisp_t
*eval_error_constr
;
326 jsdisp_t
*range_error_constr
;
327 jsdisp_t
*reference_error_constr
;
328 jsdisp_t
*regexp_error_constr
;
329 jsdisp_t
*syntax_error_constr
;
330 jsdisp_t
*type_error_constr
;
331 jsdisp_t
*uri_error_constr
;
332 jsdisp_t
*number_constr
;
333 jsdisp_t
*object_constr
;
334 jsdisp_t
*regexp_constr
;
335 jsdisp_t
*string_constr
;
336 jsdisp_t
*vbarray_constr
;
339 void script_release(script_ctx_t
*) DECLSPEC_HIDDEN
;
341 static inline void script_addref(script_ctx_t
*ctx
)
346 HRESULT
init_global(script_ctx_t
*) DECLSPEC_HIDDEN
;
347 HRESULT
init_function_constr(script_ctx_t
*,jsdisp_t
*) DECLSPEC_HIDDEN
;
348 HRESULT
create_object_prototype(script_ctx_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
350 HRESULT
create_activex_constr(script_ctx_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
351 HRESULT
create_array_constr(script_ctx_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
352 HRESULT
create_bool_constr(script_ctx_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
353 HRESULT
create_date_constr(script_ctx_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
354 HRESULT
init_error_constr(script_ctx_t
*,jsdisp_t
*) DECLSPEC_HIDDEN
;
355 HRESULT
create_number_constr(script_ctx_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
356 HRESULT
create_object_constr(script_ctx_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
357 HRESULT
create_regexp_constr(script_ctx_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
358 HRESULT
create_string_constr(script_ctx_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
359 HRESULT
create_vbarray_constr(script_ctx_t
*,jsdisp_t
*,jsdisp_t
**) DECLSPEC_HIDDEN
;
361 IUnknown
*create_ax_site(script_ctx_t
*) DECLSPEC_HIDDEN
;
362 HRESULT
create_jscaller(script_ctx_t
*) DECLSPEC_HIDDEN
;
369 #define REM_CHECK_GLOBAL 0x0001
370 #define REM_RESET_INDEX 0x0002
371 #define REM_NO_CTX_UPDATE 0x0004
372 HRESULT
regexp_match_next(script_ctx_t
*,jsdisp_t
*,DWORD
,const WCHAR
*,DWORD
,const WCHAR
**,match_result_t
**,
373 DWORD
*,DWORD
*,match_result_t
*) DECLSPEC_HIDDEN
;
374 HRESULT
regexp_match(script_ctx_t
*,jsdisp_t
*,const WCHAR
*,DWORD
,BOOL
,match_result_t
**,DWORD
*) DECLSPEC_HIDDEN
;
375 HRESULT
parse_regexp_flags(const WCHAR
*,DWORD
,DWORD
*) DECLSPEC_HIDDEN
;
376 HRESULT
regexp_string_match(script_ctx_t
*,jsdisp_t
*,BSTR
,VARIANT
*,jsexcept_t
*) DECLSPEC_HIDDEN
;
378 static inline VARIANT
*get_arg(const DISPPARAMS
*dp
, DWORD i
)
380 return dp
->rgvarg
+ dp
->cArgs
-i
-1;
383 static inline DWORD
arg_cnt(const DISPPARAMS
*dp
)
385 return dp
->cArgs
- dp
->cNamedArgs
;
388 static inline BOOL
is_class(jsdisp_t
*jsdisp
, jsclass_t
class)
390 return jsdisp
->builtin_info
->class == class;
393 static inline BOOL
is_vclass(vdisp_t
*vdisp
, jsclass_t
class)
395 return is_jsdisp(vdisp
) && is_class(vdisp
->u
.jsdisp
, class);
398 static inline BOOL
is_num_vt(enum VARENUM vt
)
400 return vt
== VT_I4
|| vt
== VT_R8
;
403 static inline DOUBLE
num_val(const VARIANT
*v
)
405 return V_VT(v
) == VT_I4
? V_I4(v
) : V_R8(v
);
409 #define INT32_MIN (-2147483647-1)
413 #define INT32_MAX (2147483647)
416 static inline BOOL
is_int32(double d
)
418 return INT32_MIN
<= d
&& d
<= INT32_MAX
&& (double)(int)d
== d
;
421 static inline void num_set_int(VARIANT
*v
, INT i
)
427 static inline void num_set_val(VARIANT
*v
, DOUBLE d
)
438 static inline void num_set_inf(VARIANT
*v
, BOOL positive
)
442 V_R8(v
) = positive
? INFINITY
: -INFINITY
;
444 V_UI8(v
) = (ULONGLONG
)0x7ff00000<<32;
450 static inline void var_set_jsdisp(VARIANT
*v
, jsdisp_t
*jsdisp
)
452 V_VT(v
) = VT_DISPATCH
;
453 V_DISPATCH(v
) = to_disp(jsdisp
);
456 static inline DWORD
make_grfdex(script_ctx_t
*ctx
, DWORD flags
)
458 return (ctx
->version
<< 28) | flags
;
461 #define FACILITY_JSCRIPT 10
463 #define MAKE_JSERROR(code) MAKE_HRESULT(SEVERITY_ERROR, FACILITY_JSCRIPT, code)
465 #define JS_E_TO_PRIMITIVE MAKE_JSERROR(IDS_TO_PRIMITIVE)
466 #define JS_E_INVALIDARG MAKE_JSERROR(IDS_INVALID_CALL_ARG)
467 #define JS_E_SUBSCRIPT_OUT_OF_RANGE MAKE_JSERROR(IDS_SUBSCRIPT_OUT_OF_RANGE)
468 #define JS_E_OBJECT_REQUIRED MAKE_JSERROR(IDS_OBJECT_REQUIRED)
469 #define JS_E_CANNOT_CREATE_OBJ MAKE_JSERROR(IDS_CREATE_OBJ_ERROR)
470 #define JS_E_INVALID_PROPERTY MAKE_JSERROR(IDS_NO_PROPERTY)
471 #define JS_E_INVALID_ACTION MAKE_JSERROR(IDS_UNSUPPORTED_ACTION)
472 #define JS_E_MISSING_ARG MAKE_JSERROR(IDS_ARG_NOT_OPT)
473 #define JS_E_SYNTAX MAKE_JSERROR(IDS_SYNTAX_ERROR)
474 #define JS_E_MISSING_SEMICOLON MAKE_JSERROR(IDS_SEMICOLON)
475 #define JS_E_MISSING_LBRACKET MAKE_JSERROR(IDS_LBRACKET)
476 #define JS_E_MISSING_RBRACKET MAKE_JSERROR(IDS_RBRACKET)
477 #define JS_E_INVALID_CHAR MAKE_JSERROR(IDS_INVALID_CHAR)
478 #define JS_E_UNTERMINATED_STRING MAKE_JSERROR(IDS_UNTERMINATED_STR)
479 #define JS_E_INVALID_BREAK MAKE_JSERROR(IDS_INVALID_BREAK)
480 #define JS_E_INVALID_CONTINUE MAKE_JSERROR(IDS_INVALID_CONTINUE)
481 #define JS_E_LABEL_REDEFINED MAKE_JSERROR(IDS_LABEL_REDEFINED)
482 #define JS_E_LABEL_NOT_FOUND MAKE_JSERROR(IDS_LABEL_NOT_FOUND)
483 #define JS_E_DISABLED_CC MAKE_JSERROR(IDS_DISABLED_CC)
484 #define JS_E_FUNCTION_EXPECTED MAKE_JSERROR(IDS_NOT_FUNC)
485 #define JS_E_DATE_EXPECTED MAKE_JSERROR(IDS_NOT_DATE)
486 #define JS_E_NUMBER_EXPECTED MAKE_JSERROR(IDS_NOT_NUM)
487 #define JS_E_OBJECT_EXPECTED MAKE_JSERROR(IDS_OBJECT_EXPECTED)
488 #define JS_E_ILLEGAL_ASSIGN MAKE_JSERROR(IDS_ILLEGAL_ASSIGN)
489 #define JS_E_UNDEFINED_VARIABLE MAKE_JSERROR(IDS_UNDEFINED)
490 #define JS_E_BOOLEAN_EXPECTED MAKE_JSERROR(IDS_NOT_BOOL)
491 #define JS_E_VBARRAY_EXPECTED MAKE_JSERROR(IDS_NOT_VBARRAY)
492 #define JS_E_INVALID_DELETE MAKE_JSERROR(IDS_INVALID_DELETE)
493 #define JS_E_JSCRIPT_EXPECTED MAKE_JSERROR(IDS_JSCRIPT_EXPECTED)
494 #define JS_E_REGEXP_SYNTAX MAKE_JSERROR(IDS_REGEXP_SYNTAX_ERROR)
495 #define JS_E_INVALID_URI_CODING MAKE_JSERROR(IDS_URI_INVALID_CODING)
496 #define JS_E_INVALID_URI_CHAR MAKE_JSERROR(IDS_URI_INVALID_CHAR)
497 #define JS_E_FRACTION_DIGITS_OUT_OF_RANGE MAKE_JSERROR(IDS_FRACTION_DIGITS_OUT_OF_RANGE)
498 #define JS_E_PRECISION_OUT_OF_RANGE MAKE_JSERROR(IDS_PRECISION_OUT_OF_RANGE)
499 #define JS_E_INVALID_LENGTH MAKE_JSERROR(IDS_INVALID_LENGTH)
500 #define JS_E_ARRAY_EXPECTED MAKE_JSERROR(IDS_ARRAY_EXPECTED)
502 static inline BOOL
is_jscript_error(HRESULT hres
)
504 return HRESULT_FACILITY(hres
) == FACILITY_JSCRIPT
;
507 const char *debugstr_variant(const VARIANT
*) DECLSPEC_HIDDEN
;
509 HRESULT
create_jscript_object(BOOL
,REFIID
,void**) DECLSPEC_HIDDEN
;
511 extern LONG module_ref DECLSPEC_HIDDEN
;
513 static inline void lock_module(void)
515 InterlockedIncrement(&module_ref
);
518 static inline void unlock_module(void)
520 InterlockedDecrement(&module_ref
);
523 static inline void *heap_alloc(size_t len
)
525 return HeapAlloc(GetProcessHeap(), 0, len
);
528 static inline void *heap_alloc_zero(size_t len
)
530 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, len
);
533 static inline void *heap_realloc(void *mem
, size_t len
)
535 return HeapReAlloc(GetProcessHeap(), 0, mem
, len
);
538 static inline BOOL
heap_free(void *mem
)
540 return HeapFree(GetProcessHeap(), 0, mem
);
543 static inline LPWSTR
heap_strdupW(LPCWSTR str
)
550 size
= (strlenW(str
)+1)*sizeof(WCHAR
);
551 ret
= heap_alloc(size
);
552 memcpy(ret
, str
, size
);