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:
875 bytes
|
Rev | Line | |
---|
[7655] | 1 | /*!\file KMLMeshWrite.h
|
---|
[8062] | 2 | * \brief: prototype for KML mesh writer mex module.
|
---|
[7655] | 3 | */
|
---|
| 4 |
|
---|
| 5 | #ifndef _KMLMESHWRITE_H
|
---|
| 6 | #define _KMLMESHWRITE_H
|
---|
| 7 |
|
---|
| 8 | /* local prototypes: */
|
---|
| 9 | void KMLMeshWriteUsage(void);
|
---|
| 10 |
|
---|
[12004] | 11 | #include "../../c/include/globals.h"
|
---|
[7655] | 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.