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