/ msSHPGetInfo() */ / Fetch general information about the shape file. */ /
| 411 | /* Fetch general information about the shape file. */ |
| 412 | /************************************************************************/ |
| 413 | void msSHPGetInfo(SHPHandle psSHP, int * pnEntities, int * pnShapeType ) |
| 414 | { |
| 415 | if( pnEntities ) |
| 416 | *pnEntities = psSHP->nRecords; |
| 417 | |
| 418 | if( pnShapeType ) |
| 419 | *pnShapeType = psSHP->nShapeType; |
| 420 | } |
| 421 | |
| 422 | /************************************************************************/ |
| 423 | /* msSHPCreate() */ |
no outgoing calls
no test coverage detected