mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fixed user32.dll so it will compile
svn path=/trunk/; revision=1323
This commit is contained in:
parent
8293c58f61
commit
7550af7e4d
1 changed files with 4 additions and 0 deletions
|
@ -7,6 +7,10 @@
|
|||
#ifndef __WINE_WIN_H
|
||||
#define __WINE_WIN_H
|
||||
|
||||
#define MAX(a, b)((a > b)? a : b)
|
||||
#define MIN(a, b)((a < b)? a : b)
|
||||
#define max(a, b)((a > b)? a : b)
|
||||
#define min(a, b)((a < b)? a : b)
|
||||
|
||||
typedef HANDLE HTASK;
|
||||
typedef HANDLE HQUEUE;
|
||||
|
|
Loading…
Reference in a new issue