source: issm/trunk-jpl/src/mex/SurfaceArea/SurfaceArea.h@ 10937

Last change on this file since 10937 was 5413, checked in by Mathieu Morlighem, 15 years ago

Fixed misfit 3

File size: 706 bytes
Line 
1/*
2 SurfaceArea.h
3*/
4
5#ifndef _SURFACEAREA_H
6#define _SURFACEAREA_H
7
8/* local prototypes: */
9void SurfaceAreaUsage(void);
10
11#include "../../c/modules/modules.h"
12#include "../../c/Container/Container.h"
13#include "../../c/shared/shared.h"
14
15#undef __FUNCT__
16#define __FUNCT__ "SurfaceArea"
17
18/* serial input macros: */
19#define ELEMENTS (mxArray*)prhs[0]
20#define NODES (mxArray*)prhs[1]
21#define VERTICES (mxArray*)prhs[2]
22#define LOADS (mxArray*)prhs[3]
23#define MATERIALS (mxArray*)prhs[4]
24#define PARAMETERS (mxArray*)prhs[5]
25
26/* serial output macros: */
27#define ELEMENTSOUT (mxArray**)&plhs[0]
28
29/* serial arg counts: */
30#undef NLHS
31#define NLHS 1
32#undef NRHS
33#define NRHS 6
34
35#endif /* _INPUTTORESULT_H */
Note: See TracBrowser for help on using the repository browser.