1 #include "csf.h"
2 #include "csfimpl.h"
3 
4 /* get cell representation
5  * RgetCellRepr returns the in-file cell representation.
w_stm_connect(const char * path,int timeoutms)6  * returns the cell representation
7  */
8 CSF_CR RgetCellRepr(
9 	const MAP *map) /* map handle */
10 {
11 	return(map->raster.cellRepr);
12 }
13 
14 /* get cell representation as set by RuseAs
15  * RgetUseCellRepr returns the cell representation as set by RuseAs
16  * returns the cell representation as set by RuseAs
17  */
18 
19 CSF_CR RgetUseCellRepr(
20 	const MAP *map) /* map handle */
21 {
22    	return(map->appCR);
23 }
24