push cc8bc80451cc24f4d7cf75168b569f0ebfe19547
[wine/hacks.git] / dlls / mountmgr.sys / mountmgr.h
blobe8f7d5d7c7c6ad6c1eeda86baaebdc50563c6f70
1 /*
2 * Mountmanager private header
4 * Copyright 2008 Maarten Lankhorst
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
23 #define NONAMELESSUNION
24 #define NONAMELESSSTRUCT
26 #include "ntstatus.h"
27 #define WIN32_NO_STATUS
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winternl.h"
31 #include "winioctl.h"
32 #include "ntddstor.h"
33 #include "ntddcdrm.h"
34 #include "ddk/wdm.h"
35 #define WINE_MOUNTMGR_EXTENSIONS
36 #include "ddk/mountmgr.h"
38 extern void initialize_hal(void);
39 extern void initialize_diskarbitration(void);
41 /* device functions */
43 enum device_type
45 DEVICE_UNKNOWN,
46 DEVICE_HARDDISK,
47 DEVICE_HARDDISK_VOL,
48 DEVICE_FLOPPY,
49 DEVICE_CDROM,
50 DEVICE_NETWORK,
51 DEVICE_RAMDISK
54 extern NTSTATUS add_dos_device( int letter, const char *udi, const char *device,
55 const char *mount_point, enum device_type type );
56 extern NTSTATUS remove_dos_device( int letter, const char *udi );
57 extern NTSTATUS query_dos_device( int letter, enum device_type *type,
58 const char **device, const char **mount_point );
59 extern NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path );
61 /* mount point functions */
63 struct mount_point;
65 extern struct mount_point *add_dosdev_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
66 int drive, const void *id, unsigned int id_len );
67 extern struct mount_point *add_volume_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
68 int drive, const void *id, unsigned int id_len );
69 extern void delete_mount_point( struct mount_point *mount );
70 extern void set_mount_point_id( struct mount_point *mount, const void *id, unsigned int id_len );