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
c5e7657d
Commit
c5e7657d
authored
Oct 21, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mountmgr: Include some system headers in mountmgr.h.
parent
6d901a17
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
27 deletions
+22
-27
device.c
dlls/mountmgr.sys/device.c
+1
-2
diskarb.c
dlls/mountmgr.sys/diskarb.c
+1
-6
hal.c
dlls/mountmgr.sys/hal.c
+1
-5
mountmgr.c
dlls/mountmgr.sys/mountmgr.c
+2
-12
mountmgr.h
dlls/mountmgr.sys/mountmgr.h
+17
-2
No files found.
dlls/mountmgr.sys/device.c
View file @
c5e7657d
...
...
@@ -27,8 +27,7 @@
#include <stdio.h>
#include <sys/time.h>
#include "windef.h"
#include "winbase.h"
#include "mountmgr.h"
#include "winreg.h"
#include "winuser.h"
#include "dbt.h"
...
...
dlls/mountmgr.sys/diskarb.c
View file @
c5e7657d
...
...
@@ -27,13 +27,8 @@
#include <stdio.h>
#include <sys/time.h>
#include "windef.h"
#include "winbase.h"
#include "winreg.h"
#include "winuser.h"
#include "wine/debug.h"
#include "mountmgr.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mountmgr
);
...
...
dlls/mountmgr.sys/hal.c
View file @
c5e7657d
...
...
@@ -27,16 +27,12 @@
#include <stdio.h>
#include <sys/time.h>
#include "windef.h"
#include "winbase.h"
#include "winreg.h"
#include "winuser.h"
#include "mountmgr.h"
#include "excpt.h"
#include "wine/library.h"
#include "wine/exception.h"
#include "wine/debug.h"
#include "mountmgr.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mountmgr
);
...
...
dlls/mountmgr.sys/mountmgr.c
View file @
c5e7657d
...
...
@@ -24,22 +24,12 @@
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "winbase.h"
#include "winternl.h"
#include "winioctl.h"
#include "mountmgr.h"
#include "winreg.h"
#include "ntddstor.h"
#include "ntddcdrm.h"
#include "ddk/wdm.h"
#include "ddk/mountmgr.h"
#include "wine/library.h"
#include "wine/unicode.h"
#include "wine/list.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "mountmgr.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mountmgr
);
...
...
dlls/mountmgr.sys/mountmgr.h
View file @
c5e7657d
...
...
@@ -18,8 +18,23 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "winbase.h"
#include "winternl.h"
#include "winioctl.h"
#include "ntddstor.h"
#include "ntddcdrm.h"
#include "ddk/wdm.h"
#include "ddk/mountmgr.h"
extern
void
initialize_hal
(
void
);
extern
void
initialize_diskarbitration
(
void
);
extern
BOOL
add_dos_device
(
const
char
*
udi
,
const
char
*
device
,
const
char
*
mount_point
,
DWORD
type
);
extern
BOOL
add_dos_device
(
const
char
*
udi
,
const
char
*
device
,
const
char
*
mount_point
,
DWORD
type
);
extern
BOOL
remove_dos_device
(
const
char
*
udi
);
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