source: issm/branches/trunk-jpl-damage/src/mex/TriaSearch/TriaSearch.h@ 11427

Last change on this file since 11427 was 5354, checked in by Eric.Larour, 15 years ago

New TriaSearch module.

File size: 597 bytes
Line 
1/*!\file TriaSearch.h
2 */
3
4#ifndef _TRIASEARCH_H
5#define _TRIASEARCH_H
6
7/* local prototypes: */
8void TriaSearchUsage(void);
9
10#include "../../c/modules/modules.h"
11#include "../../c/Container/Container.h"
12#include "../../c/shared/shared.h"
13
14#undef __FUNCT__
15#define __FUNCT__ "TriaSearch"
16
17
18/* serial input macros: */
19#define INDEXHANDLE prhs[0]
20#define XHANDLE prhs[1]
21#define YHANDLE prhs[2]
22#define X0HANDLE prhs[3]
23#define Y0HANDLE prhs[4]
24
25/* serial output macros: */
26#define TRIA (mxArray**)&plhs[0]
27
28/* serial arg counts: */
29#undef NLHS
30#define NLHS 1
31
32#undef NRHS
33#define NRHS 5
34
35#endif
Note: See TracBrowser for help on using the repository browser.