mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
Don't define the "min" and "max" macros in the general "typedefs.h", they conflict with the similar functions in the "std" namespace in C++ apps then.
Instead just define them in widl, this is currently the only place where we need them. svn path=/trunk/; revision=30843
This commit is contained in:
@@ -227,9 +227,6 @@ RemoveTailList(
|
||||
typedef const UNICODE_STRING *PCUNICODE_STRING;
|
||||
|
||||
/* Widely used macros */
|
||||
#define min(a, b) ((a) < (b) ? (a) : (b))
|
||||
#define max(a,b) ((a) < (b) ? (b) : (a))
|
||||
|
||||
#define LOBYTE(w) ((BYTE)(w))
|
||||
#define HIBYTE(w) ((BYTE)(((WORD)(w)>>8)&0xFF))
|
||||
#define LOWORD(l) ((WORD)((DWORD_PTR)(l)))
|
||||
|
||||
@@ -27,6 +27,9 @@
|
||||
#define E_OUTOFMEMORY ((HRESULT)0x8007000EL)
|
||||
#define TYPE_E_IOERROR ((HRESULT)0x80028CA2L)
|
||||
|
||||
#define min(a, b) ((a) < (b) ? (a) : (b))
|
||||
#define max(a,b) ((a) < (b) ? (b) : (a))
|
||||
|
||||
#include <stdarg.h>
|
||||
#include "guiddef.h"
|
||||
#include "wine/rpcfc.h"
|
||||
|
||||
Reference in New Issue
Block a user