Fixed user32.dll so it will compile

svn path=/trunk/; revision=1323
This commit is contained in:
Casper Hornstrup 2000-08-28 19:36:49 +00:00
parent 8293c58f61
commit 7550af7e4d

View file

@ -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;