mountmgr.h 2.45 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Mountmanager private header
 *
 * Copyright 2008 Maarten Lankhorst
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

21 22 23 24 25 26 27 28 29 30 31 32 33 34
#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"
35
#define WINE_MOUNTMGR_EXTENSIONS
36 37
#include "ddk/mountmgr.h"

38 39
extern void initialize_hal(void);
extern void initialize_diskarbitration(void);
40 41 42

/* device functions */

43 44 45 46 47 48 49 50 51 52 53
enum device_type
{
    DEVICE_UNKNOWN,
    DEVICE_HARDDISK,
    DEVICE_HARDDISK_VOL,
    DEVICE_FLOPPY,
    DEVICE_CDROM,
    DEVICE_NETWORK,
    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 58
extern NTSTATUS query_dos_device( int letter, enum device_type *type,
                                  const char **device, const char **mount_point );
59 60 61 62 63 64 65 66 67 68
extern NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path );

/* mount point functions */

struct mount_point;

extern struct mount_point *add_dosdev_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
                                                   int drive, const void *id, unsigned int id_len );
extern struct mount_point *add_volume_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
                                                   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 );