source: issm/trunk-jpl/src/mex/KMLMeshWrite/KMLMeshWrite.h@ 11933

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

New FetchData and WriteData interface

File size: 875 bytes
Line 
1/*!\file KMLMeshWrite.h
2 * \brief: prototype for KML mesh writer mex module.
3 */
4
5#ifndef _KMLMESHWRITE_H
6#define _KMLMESHWRITE_H
7
8/* local prototypes: */
9void KMLMeshWriteUsage(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
16#undef __FUNCT__
17#define __FUNCT__ "KMLMeshWrite"
18
19
20/* serial input macros: */
21#define NAME prhs[0]
22#define NOTES prhs[1]
23#define ELEMHANDLE prhs[2]
24#define NODECONHANDLE prhs[3]
25#define LATHANDLE prhs[4]
26#define LNGHANDLE prhs[5]
27#define PARTHANDLE prhs[6]
28#define DATAHANDLE prhs[7]
29#define CMAPHANDLE prhs[8]
30#define FILENAME prhs[9]
31
32/* serial output macros: */
33#define ERRORFLAG (mxArray**)&plhs[0]
34
35/* serial arg counts: */
36#undef NRHS
37#define NRHS 10
38#undef NLHS
39#define NLHS 1
40
41#endif
Note: See TracBrowser for help on using the repository browser.