Home
last modified time | relevance | path

Searched refs:vbscode (Results 1 – 1 of 1) sorted by relevance

/reactos/dll/win32/vbscript/
H A Dcompile.c119 static inline void *compiler_alloc(vbscode_t *vbscode, size_t size) in compiler_alloc() argument
121 return heap_pool_alloc(&vbscode->heap, size); in compiler_alloc()
124 static inline void *compiler_alloc_zero(vbscode_t *vbscode, size_t size) in compiler_alloc_zero() argument
128 ret = heap_pool_alloc(&vbscode->heap, size); in compiler_alloc_zero()
134 static WCHAR *compiler_alloc_string(vbscode_t *vbscode, const WCHAR *str) in compiler_alloc_string() argument
140 ret = compiler_alloc(vbscode, size); in compiler_alloc_string()