1 #include "csf.h"
2 #include "csfimpl.h"
3 
4 /* global header (opt.) and trackmm's prototypes "" */
5 
6 
7 /* headers of this app. modules called */
8 
9 /***************/
10 /* EXTERNALS   */
11 /***************/
12 
13 /**********************/
14 /* LOCAL DECLARATIONS */
15 /**********************/
16 
17 /*********************/
18 /* LOCAL DEFINITIONS */
19 /*********************/
20 
21 /******************/
22 /* IMPLEMENTATION */
23 /******************/
24 
25 /* disable automatic tracking of minimum and maximum value
26  * A call to RdontTrackMinMax disables the automatic tracking
27  * of the min/max value in successive cell writes.
28  * If used, one must always
29  * use RputMinVal and RputMaxVal to set the correct values.
30  */
RdontTrackMinMax(MAP * m)31 void RdontTrackMinMax(MAP *m) /* map handle */
32 {
33 	m->minMaxStatus = MM_DONTKEEPTRACK;
34 }
35