Make dinput a properly separated dll.
[wine] / include / minmax.h
1 /*
2  * min/max macros
3  *
4  * Copyright 2001 Francois Gouget
5  */
6
7 #ifndef __WINE_MINMAX_H
8 #define __WINE_MINMAX_H
9
10 #ifndef max
11 #define max(a,b)   (((a) > (b)) ? (a) : (b))
12 #endif
13 #ifndef min
14 #define min(a,b)   (((a) < (b)) ? (a) : (b))
15 #endif
16
17 #endif /* __WINE_MINMAX_H */