Skip to content

Instantly share code, notes, and snippets.

@schwehr
Created August 8, 2016 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schwehr/5ea1566591405a228b73d24f7f2cb2be to your computer and use it in GitHub Desktop.
Save schwehr/5ea1566591405a228b73d24f7f2cb2be to your computer and use it in GitHub Desktop.
Very minimal start to a compilation stub for the GDAL ESRI ArcSDE Raster driver
#ifndef _SDERASTER_H_
#define _SDERASTER_H_
#include <sdetype.h>
long SE_rasterinfo_create(SE_RASTERINFO *raster);
#endif // _SDERASTER_H_
#ifndef _SDETYPE_H_
#define _SDETYPE_H_
class SE_RASBANDINFO {};
class SE_CONNECTION {};
class SE_STREAM {};
class SE_QUERYINFO {};
class SE_RASCONSTRAINT {};
class SE_RASCOLINFO {};
class SE_RASTERATTR {};
class SE_RASTERINFO {};
typedef long LONG;
#define SE_SUCCESS 1
#endif // _SDETYPE_H_
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment