Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenminmax.h
Go to the documentation of this file.
00001 00006 #ifndef _INC_MINMAX 00007 #define _INC_MINMAX 00008 00009 #ifndef __cplusplus 00010 #ifndef NOMINMAX 00011 #ifndef max 00012 #define max(a,b) (((a) > (b)) ? (a) : (b)) 00013 #endif 00014 00015 #ifndef min 00016 #define min(a,b) (((a) < (b)) ? (a) : (b)) 00017 #endif 00018 #endif 00019 #endif 00020 00021 #endif Generated on Sat May 26 2012 04:28:28 for ReactOS by
1.7.6.1
|