comparison src/w32menu.c @ 39682:5f60884970a8

Don't define min/max.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 08 Oct 2001 08:07:49 +0000
parents 24530f82048e
children 38c1890338cc
comparison
equal deleted inserted replaced
39681:87cc624f4e1e 39682:5f60884970a8
111 #define malloc_widget_value() (void*)LocalAlloc (LMEM_ZEROINIT, sizeof (widget_value)) 111 #define malloc_widget_value() (void*)LocalAlloc (LMEM_ZEROINIT, sizeof (widget_value))
112 #define free_widget_value(wv) LocalFree (wv) 112 #define free_widget_value(wv) LocalFree (wv)
113 113
114 /******************************************************************/ 114 /******************************************************************/
115 115
116 #define min(x,y) (((x) < (y)) ? (x) : (y))
117 #define max(x,y) (((x) > (y)) ? (x) : (y))
118
119 #ifndef TRUE 116 #ifndef TRUE
120 #define TRUE 1 117 #define TRUE 1
121 #define FALSE 0 118 #define FALSE 0
122 #endif /* no TRUE */ 119 #endif /* no TRUE */
123 120