source: issm/trunk/src/mex/Bamg/Bamg.h@ 3332

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

Do not use throw ErrorException -> ISSMERROR macro
Removed all FUNCT definitions (now useless)

File size: 536 bytes
Line 
1/*
2 Bamg.h
3*/
4
5#ifndef _BAMG_H
6#define _BAMG_H
7
8/* local prototypes: */
9void BamgUsage(void);
10
11#include "../../c/issm.h"
12
13#undef __FUNCT__
14#define __FUNCT__ "Bamg"
15
16/* serial input macros: */
17#define BAMGMESH (mxArray*)prhs[0]
18#define BAMGGEOMETRY (mxArray*)prhs[1]
19#define BAMGOPTIONS (mxArray*)prhs[2]
20
21/* serial output macros: */
22#define BAMGMESHOUT (mxArray**)&plhs[0]
23#define BAMGGEOMOUT (mxArray**)&plhs[1]
24
25/* serial arg counts: */
26#undef NLHS
27#define NLHS 2
28#undef NRHS
29#define NRHS 3
30
31#endif /* _BAMG_H */
32
Note: See TracBrowser for help on using the repository browser.