[PRINTING]
[reactos.git] / reactos / base / applications / cmdutils / wscript / wscript.h
1 /*
2 * Copyright 2010 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 #ifndef _WSCRIPT_H_
20 #define _WSCRIPT_H_
21
22 #include <stdarg.h>
23
24 #define WIN32_NO_STATUS
25 #define _INC_WINDOWS
26 #define COBJMACROS
27 #define CONST_VTABLE
28
29 #include <windef.h>
30 #include <winbase.h>
31 #include <initguid.h>
32 #include <ole2.h>
33 #include <ihost.h>
34 #include <wine/debug.h>
35 #include <wine/unicode.h>
36
37 WINE_DEFAULT_DEBUG_CHANNEL(wscript);
38
39 extern IHost host_obj;
40
41 extern IArguments2 arguments_obj;
42
43 extern ITypeInfo *host_ti;
44
45 extern ITypeInfo *arguments_ti;
46
47 extern WCHAR scriptFullName[];
48
49 extern WCHAR **argums;
50
51 extern int numOfArgs;
52
53 extern VARIANT_BOOL wshInteractive;
54
55 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
56 {
57 return HeapAlloc(GetProcessHeap(), 0, len);
58 }
59
60 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
61 {
62 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
63 }
64
65 static inline BOOL heap_free(void *mem)
66 {
67 return HeapFree(GetProcessHeap(), 0, mem);
68 }
69
70 #endif /* _WSCRIPT_H_ */