source: issm/trunk-jpl/src/mex/InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.h@ 12013

Last change on this file since 12013 was 12013, checked in by Eric.Larour, 13 years ago

Some debugging of compilation

File size: 853 bytes
Line 
1/*!\file InterpFromMeshToMesh2d.h
2 * \brief: prototype for Data Interpolation mex module.
3 */
4
5#ifndef _INTERPFROMMESHTOMESH2d_H
6#define _INTERPFROMMESHTOMESH2d_H
7
8/* local prototypes: */
9void InterpFromMeshToMesh2dUsage(void);
10
11#include "../../c/include/globals.h"
12#include "../../c/modules/modules.h"
13#include "../../c/Container/Container.h"
14#include "../../c/shared/shared.h"
15#include "../../c/issm-binding.h"
16
17#undef __FUNCT__
18#define __FUNCT__ "InterpFromMeshToMesh2d"
19
20
21/* serial input macros: */
22#define INDEXHANDLE prhs[0]
23#define XHANDLE prhs[1]
24#define YHANDLE prhs[2]
25#define DATAHANDLE prhs[3]
26#define XINTERPHANDLE prhs[4]
27#define YINTERPHANDLE prhs[5]
28#define DEFAULTHANDLE prhs[6]
29#define FILENAME prhs[7]
30
31/* serial output macros: */
32#define DATAINTERP (mxArray**)&plhs[0]
33
34/* serial arg counts: */
35#undef NLHS
36#define NLHS 1
37
38#endif
Note: See TracBrowser for help on using the repository browser.