source: issm/trunk-jpl/src/mex/Shp2Kml/Shp2Kml.h@ 10937

Last change on this file since 10937 was 10239, checked in by jschierm, 13 years ago

Shp2Kml: Initial commit of Shp2Kml module for translating shp file to kml file.

File size: 604 bytes
Line 
1/*!\file Shp2Kml.h
2 * \brief: prototype for shp to kml file conversion mex module.
3 */
4
5#ifndef _SHP2KML_H
6#define _SHP2KML_H
7
8/* local prototypes: */
9void Shp2KmlUsage(void);
10
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__ "Shp2Kml"
17
18
19/* serial input macros: */
20#define SHP_IN prhs[0]
21#define KML_IN prhs[1]
22#define SGN_IN prhs[2]
23
24/* serial output macros: */
25#define RET_OUT (mxArray**)&plhs[0]
26
27/* serial arg counts: */
28#undef NRHS
29#define NRHS 3
30#undef NLHS
31#define NLHS 1
32
33#endif
34
Note: See TracBrowser for help on using the repository browser.