* Sync up to trunk head (r65394).
[reactos.git] / 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 <ihost.h>
33 #include <wine/debug.h>
34 #include <wine/unicode.h>
35
36 WINE_DEFAULT_DEBUG_CHANNEL(wscript);
37
38 extern IHost host_obj;
39
40 extern IArguments2 arguments_obj;
41
42 extern ITypeInfo *host_ti;
43
44 extern ITypeInfo *arguments_ti;
45
46 extern WCHAR scriptFullName[];
47
48 extern WCHAR **argums;
49
50 extern int numOfArgs;
51
52 extern VARIANT_BOOL wshInteractive;
53
54 #endif /* _WSCRIPT_H_ */