jscript: Added var statement implementation.
[wine/multimedia.git] / dlls / jscript / jscript.h
blob31812bf7d20fa1b16ba292c65abdc4a6e2cea502
1 /*
2 * Copyright 2008 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
19 #include <stdarg.h>
20 #include <stdio.h>
22 #define COBJMACROS
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winuser.h"
27 #include "ole2.h"
28 #include "dispex.h"
29 #include "activscp.h"
31 #include "wine/unicode.h"
32 #include "wine/list.h"
34 typedef struct _script_ctx_t script_ctx_t;
35 typedef struct _exec_ctx_t exec_ctx_t;
36 typedef struct _dispex_prop_t dispex_prop_t;
38 typedef struct {
39 EXCEPINFO ei;
40 VARIANT var;
41 } jsexcept_t;
43 typedef struct DispatchEx DispatchEx;
45 #define PROPF_ARGMASK 0x00ff
46 #define PROPF_METHOD 0x0100
47 #define PROPF_ENUM 0x0200
48 #define PROPF_CONSTR 0x0400
50 typedef enum {
51 JSCLASS_NONE,
52 JSCLASS_GLOBAL
53 } jsclass_t;
55 typedef HRESULT (*builtin_invoke_t)(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
57 typedef struct {
58 const WCHAR *name;
59 builtin_invoke_t invoke;
60 DWORD flags;
61 } builtin_prop_t;
63 typedef struct {
64 jsclass_t class;
65 builtin_prop_t value_prop;
66 DWORD props_cnt;
67 const builtin_prop_t *props;
68 void (*destructor)(DispatchEx*);
69 void (*on_put)(DispatchEx*,const WCHAR*);
70 } builtin_info_t;
72 struct DispatchEx {
73 const IDispatchExVtbl *lpIDispatchExVtbl;
75 LONG ref;
77 DWORD buf_size;
78 DWORD prop_cnt;
79 dispex_prop_t *props;
80 script_ctx_t *ctx;
82 DispatchEx *prototype;
84 const builtin_info_t *builtin_info;
87 #define _IDispatchEx_(x) ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
89 HRESULT create_dispex(script_ctx_t*,const builtin_info_t*,DispatchEx*,DispatchEx**);
90 HRESULT disp_call(IDispatch*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,jsexcept_t*,IServiceProvider*);
91 HRESULT disp_propget(IDispatch*,DISPID,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
92 HRESULT disp_propput(IDispatch*,DISPID,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
93 HRESULT jsdisp_propput_name(DispatchEx*,const WCHAR*,LCID,VARIANT*,jsexcept_t*,IServiceProvider*);
95 HRESULT to_boolean(VARIANT*,VARIANT_BOOL*);
97 typedef struct named_item_t {
98 IDispatch *disp;
99 DWORD flags;
101 struct named_item_t *next;
102 } named_item_t;
104 struct _script_ctx_t {
105 LONG ref;
107 SCRIPTSTATE state;
108 exec_ctx_t *exec_ctx;
109 named_item_t *named_items;
110 LCID lcid;
112 DispatchEx *script_disp;
113 DispatchEx *global;
116 void script_release(script_ctx_t*);
118 static inline void script_addref(script_ctx_t *ctx)
120 ctx->ref++;
123 HRESULT init_global(script_ctx_t*);
125 const char *debugstr_variant(const VARIANT*);
127 HRESULT WINAPI JScriptFactory_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**);
129 typedef struct {
130 void **blocks;
131 DWORD block_cnt;
132 DWORD last_block;
133 DWORD offset;
134 struct list custom_blocks;
135 } jsheap_t;
137 void jsheap_init(jsheap_t*);
138 void *jsheap_alloc(jsheap_t*,DWORD);
139 void jsheap_clear(jsheap_t*);
140 void jsheap_free(jsheap_t*);
142 extern LONG module_ref;
144 static inline void lock_module(void)
146 InterlockedIncrement(&module_ref);
149 static inline void unlock_module(void)
151 InterlockedDecrement(&module_ref);
154 static inline void *heap_alloc(size_t len)
156 return HeapAlloc(GetProcessHeap(), 0, len);
159 static inline void *heap_alloc_zero(size_t len)
161 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
164 static inline void *heap_realloc(void *mem, size_t len)
166 return HeapReAlloc(GetProcessHeap(), 0, mem, len);
169 static inline BOOL heap_free(void *mem)
171 return HeapFree(GetProcessHeap(), 0, mem);
174 static inline LPWSTR heap_strdupW(LPCWSTR str)
176 LPWSTR ret = NULL;
178 if(str) {
179 DWORD size;
181 size = (strlenW(str)+1)*sizeof(WCHAR);
182 ret = heap_alloc(size);
183 memcpy(ret, str, size);
186 return ret;
189 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))