mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[JSCRIPT] Fix MSVC build.
This commit is contained in:
parent
1074ede011
commit
c6f49f5394
1 changed files with 2 additions and 1 deletions
|
@ -1793,6 +1793,7 @@ HRESULT jsdisp_define_property(jsdisp_t *obj, const WCHAR *name, property_desc_t
|
|||
|
||||
HRESULT jsdisp_define_data_property(jsdisp_t *obj, const WCHAR *name, unsigned flags, jsval_t value)
|
||||
{
|
||||
property_desc_t prop_desc = { flags, flags, TRUE, value };
|
||||
property_desc_t prop_desc = { flags, flags, TRUE };
|
||||
prop_desc.value = value;
|
||||
return jsdisp_define_property(obj, name, &prop_desc);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue