forked from blurstudio/Py3dsMax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
imports.h
71 lines (52 loc) · 1.6 KB
/
imports.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
\file imports.h
\remarks This file contains with it all the imports necessary
for this plugin to compile, and in the precise order
they need to be imported.
\author Blur Studio (c) 2010
\email beta@blur.com
\license This software is released under the GNU General Public License. For more info, visit: http://www.gnu.org/
*/
#ifndef __IMPORTS_H__
#define __IMPORTS_H__
// As of 2013 max is compiled with UNICODE enabled - MCHAR == TCHAR == wchar == Py_UNICODE, utf16
#ifdef __MAXSCRIPT_2015__
#define _UNICODE
#define UNICODE
#endif
// max 2012 switched the name of maxscript includes
#if __MAXSCRIPT_2012__ || __MAXSCRIPT_2013__ || __MAXSCRIPT_2015__
#include "foundation/numbers.h"
#include "foundation/structs.h"
#include "foundation/strings.h"
#include "kernel/exceptions.h"
#include "kernel/value.h"
#include "maxwrapper/maxclasses.h"
#include "maxwrapper/objectsets.h"
#include "compiler/parser.h"
#include "maxscript.h"
#include "ScripterExport.h"
// these are the includes for previous versions of 3dsmax
#else
#include "MAXScrpt.h"
#include "Numbers.h"
#include "MAXclses.h"
#include "structs.h"
#include "strings.h"
#include "excepts.h"
#include "Parser.h"
#include "maxscrpt.h"
#include "value.h"
#endif
// include python headers
#include <Python.h>
#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
typedef int Py_ssize_t;
#define PY_SSIZE_T_MAX INT_MAX
#define PY_SSIZE_T_MIN INT_MIN
#endif
#ifdef ScripterExport
#undef ScripterExport
#endif
#define ScripterExport __declspec( dllexport )
#endif __IMPORTS_H__