projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Added stubs for msrle32.dll and implemented RLE8 decoder.
[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 */