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

Last change on this file since 12004 was 12004, checked in by cborstad, 13 years ago

merged trunk-jpl into trunk-jpl-damage through revision 11990

File size: 634 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/include/globals.h"
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__ "TriaSearch"
17
18
19/* serial input macros: */
20#define INDEXHANDLE prhs[0]
21#define XHANDLE prhs[1]
22#define YHANDLE prhs[2]
23#define X0HANDLE prhs[3]
24#define Y0HANDLE prhs[4]
25
26/* serial output macros: */
27#define TRIA (mxArray**)&plhs[0]
28
29/* serial arg counts: */
30#undef NLHS
31#define NLHS 1
32
33#undef NRHS
34#define NRHS 5
35
36#endif
Note: See TracBrowser for help on using the repository browser.