Changeset 10239 for issm/trunk/src/mex/Shp2Kml/Shp2Kml.h
- Timestamp:
- 10/19/11 14:10:26 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/mex/Shp2Kml/Shp2Kml.h
r10229 r10239 1 2 /* 3 Shp2Kml.h 4 */ 5 1 /*!\file Shp2Kml.h 2 * \brief: prototype for shp to kml file conversion mex module. 3 */ 6 4 7 5 #ifndef _SHP2KML_H … … 18 16 #define __FUNCT__ "Shp2Kml" 19 17 18 20 19 /* serial input macros: */ 21 #define NODESIN (mxArray*)prhs[0] 22 #define CONSTRAINTS (mxArray*)prhs[1] 23 #define PARAMETERS (mxArray*)prhs[2] 24 #define ANALYSISTYPE (mxArray*)prhs[3] 20 #define SHP_IN prhs[0] 21 #define KML_IN prhs[1] 22 #define SGN_IN prhs[2] 25 23 26 24 /* serial output macros: */ 27 #define NODES(mxArray**)&plhs[0]25 #define RET_OUT (mxArray**)&plhs[0] 28 26 29 27 /* serial arg counts: */ 28 #undef NRHS 29 #define NRHS 3 30 30 #undef NLHS 31 31 #define NLHS 1 32 #undef NRHS33 #define NRHS 434 32 33 #endif 35 34 36 #endif /* _SHP2KML_H */37
Note:
See TracChangeset
for help on using the changeset viewer.