Avoid including windows.h since it conflicts with unistd.h.

This commit is contained in:
Alexandre Julliard 2004-03-19 01:17:51 +00:00
parent 99afa3a4a2
commit 5488a4ed48
1 changed files with 10 additions and 6 deletions

View File

@ -23,18 +23,22 @@
#include "config.h"
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include <windows.h>
#include <commctrl.h>
#include <stdlib.h>
#include <stdio.h>
#include <wine/debug.h>
#include <stdarg.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
#include <commctrl.h>
#include <wine/debug.h>
#include "properties.h"
#include "resource.h"
#include "winecfg.h"