On Tuesday, 19 May 2015 at 08:09:33 UTC, Suliman wrote:
modmap (C++) "<gdalwarper>";

import std.stdio;

void main()
{
        GDALDatasetH  hSrcDS, hDstDS;
        GDALAllRegister();
        writeln("hello");
}


error:
app.d(7): Error: undefined identifier GDALDatasetH
app.d(7): Error: undefined identifier GDALDatasetH
app.d(8): Error: undefined identifier GDALAllRegister

Perhaps you also need to include the GDAL headers, as I suspect gdalwarper doesn't define GDALDatasetH.

Reply via email to