Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2fff57a5
Commit
2fff57a5
authored
Sep 06, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mountmgr.sys: Include system headers before Windows headers.
parent
54c2f649
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
diskarb.c
dlls/mountmgr.sys/diskarb.c
+3
-2
hal.c
dlls/mountmgr.sys/hal.c
+4
-3
No files found.
dlls/mountmgr.sys/diskarb.c
View file @
2fff57a5
...
...
@@ -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
);
...
...
dlls/mountmgr.sys/hal.c
View file @
2fff57a5
...
...
@@ -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); \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment