mountmgr.sys: Include system headers before Windows headers.

This commit is contained in:
Alexandre Julliard 2011-09-06 12:11:41 +02:00
parent 54c2f6491d
commit 2fff57a5e7
2 changed files with 7 additions and 5 deletions

View File

@ -26,6 +26,9 @@
#include <stdarg.h>
#include <stdio.h>
#include <sys/time.h>
#ifdef HAVE_DISKARBITRATION_DISKARBITRATION_H
#include <DiskArbitration/DiskArbitration.h>
#endif
#include "mountmgr.h"
#include "wine/debug.h"
@ -34,8 +37,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(mountmgr);
#ifdef HAVE_DISKARBITRATION_DISKARBITRATION_H
#include <DiskArbitration/DiskArbitration.h>
static void appeared_callback( DADiskRef disk, void *context )
{
CFDictionaryRef dict = DADiskCopyDescription( disk );

View File

@ -26,6 +26,10 @@
#include <stdarg.h>
#include <stdio.h>
#include <sys/time.h>
#ifdef SONAME_LIBHAL
# include <dbus/dbus.h>
# include <hal/libhal.h>
#endif
#include "mountmgr.h"
#include "winnls.h"
@ -39,9 +43,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(mountmgr);
#ifdef SONAME_LIBHAL
#include <dbus/dbus.h>
#include <hal/libhal.h>
#define DBUS_FUNCS \
DO_FUNC(dbus_bus_get); \
DO_FUNC(dbus_connection_close); \