Ice Sheet System Model  4.18
Code documentation
M1qn3.h
Go to the documentation of this file.
1 
5 #ifndef _M1QN3_WRAPPER_H
6 #define _M1QN3_WRAPPER_H
7 
8 #ifdef HAVE_CONFIG_H
9  #include <config.h>
10 #else
11  #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
12 #endif
13 
14 /*For python modules: needs to come before header files inclusion*/
15 #ifdef _HAVE_PYTHON_
16 #define PY_ARRAY_UNIQUE_SYMBOL PythonIOSymbol
17 #endif
18 
19 #include "../bindings.h"
20 #include "../../c/main/globals.h"
21 #include "../../c/modules/modules.h"
22 #include "../../c/shared/shared.h"
23 
24 #undef __FUNCT__
25 #define __FUNCT__ "M1qn3"
26 
27 #ifdef _HAVE_MATLAB_MODULES_
28 /* serial input macros: */
29 #define XHANDLE prhs[0]
30 #define GHANDLE prhs[1]
31 #define JHANDLE prhs[2]
32 /* serial output macros: */
33 #define XOUT (mxArray**)&plhs[0]
34 #endif
35 
36 #ifdef _HAVE_PYTHON_MODULES_
37 /* serial input macros: */
38 #define XHANDLE PyTuple_GetItem(args,0)
39 #define GHANDLE PyTuple_GetItem(args,1)
40 #define JHANDLE PyTuple_GetItem(args,2)
41 /* serial output macros: */
42 #define XOUT output,0
43 #endif
44 
45 /* serial arg counts: */
46 #undef NLHS
47 #define NLHS 1
48 
49 #endif /* _M1QN3_WRAPPER_H */