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

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

Some debugging of compilation

File size: 675 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"
[12013]15#include "../../c/issm-binding.h"
[10229]16
17#undef __FUNCT__
18#define __FUNCT__ "Shp2Kml"
19
[10239]20
[10229]21/* serial input macros: */
[10239]22#define SHP_IN prhs[0]
23#define KML_IN prhs[1]
24#define SGN_IN prhs[2]
[10229]25
26/* serial output macros: */
[10239]27#define RET_OUT (mxArray**)&plhs[0]
[10229]28
29/* serial arg counts: */
[10239]30#undef NRHS
31#define NRHS 3
[10229]32#undef NLHS
33#define NLHS 1
34
[10239]35#endif
[10229]36
Note: See TracBrowser for help on using the repository browser.