src/inc/cheapcgi.h 1.63

1.63 2009/04/28 22:57:42 tdreszer
Added support for a numerical limit having NO_VALUE in the cgiMakeIntWithLimits() and cgiMakeDoubleWithLimits() functions
Index: src/inc/cheapcgi.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/cheapcgi.h,v
retrieving revision 1.62
retrieving revision 1.63
diff -b -B -U 4 -r1.62 -r1.63
--- src/inc/cheapcgi.h	10 Apr 2009 23:59:39 -0000	1.62
+++ src/inc/cheapcgi.h	28 Apr 2009 22:57:42 -0000	1.63
@@ -222,8 +222,9 @@
 
 void cgiMakeIntVar(char *varName, int initialVal, int maxDigits);
 /* Make a text control filled with initial integer value.  */
 
+#define NO_VALUE            -96669
 void cgiMakeIntVarInRange(char *varName, int initialVal, char *title, int width, char *min, char *max);
 /* Make a integer control filled with initial value.
    If min and/or max are non-NULL will enforce range
    Requires utils.js jQuery.js and inputBox class */