Changeset 1712
- Timestamp:
- 09/26/00 11:20:32 (8 years ago)
- Files:
-
- trunk/bridge/gdalbridge.cpp (modified) (2 diffs)
- trunk/bridge/gdalbridge.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/bridge/gdalbridge.cpp
r1671 r1712 31 31 * 32 32 * $Log$ 33 * Revision 1.10 2000/09/26 15:20:32 warmerda 34 * added GDALGetRasterBand{X,Y}Size 35 * 33 36 * Revision 1.9 2000/09/01 19:12:09 warmerda 34 37 * fixed const mismatch … … 177 180 GBGetSymbol( szPath, "GDALGetRasterDataType" ); 178 181 182 GDALGetRasterBandXSize = (int (*)(GDALRasterBandH)) 183 GBGetSymbol( szPath, "GDALGetRasterBandXSize" ); 184 185 GDALGetRasterBandYSize = (int (*)(GDALRasterBandH)) 186 GBGetSymbol( szPath, "GDALGetRasterBandYSize" ); 187 179 188 GDALGetBlockSize = (void (*)(GDALRasterBandH, int *, int *)) 180 189 GBGetSymbol( szPath, "GDALGetBlockSize" ); trunk/bridge/gdalbridge.h
r1636 r1712 31 31 * 32 32 * $Log$ 33 * Revision 1.7 2000/09/26 15:20:32 warmerda 34 * added GDALGetRasterBand{X,Y}Size 35 * 33 36 * Revision 1.6 2000/08/28 20:16:14 warmerda 34 37 * added lots of OGRSpatialReference stuff … … 295 298 #define GDALGetRasterColorTable pGDALGetRasterColorTable 296 299 300 GDAL_ENTRY int (*pfnGDALGetRasterBandXSize)( GDALRasterBandH ) GDAL_NULL; 301 #define GDALGetRasterBandXSize pfnGDALGetRasterBandXSize 302 303 GDAL_ENTRY int (*pfnGDALGetRasterBandYSize)( GDALRasterBandH ) GDAL_NULL; 304 #define GDALGetRasterBandYSize pfnGDALGetRasterBandYSize 305 297 306 /* ==================================================================== */ 298 307 /* Color tables. */
