mountmgr.sys: Mark internal symbols with hidden visibility.
This commit is contained in:
parent
d826e08904
commit
e025b138f9
|
@ -35,8 +35,8 @@
|
||||||
#define WINE_MOUNTMGR_EXTENSIONS
|
#define WINE_MOUNTMGR_EXTENSIONS
|
||||||
#include "ddk/mountmgr.h"
|
#include "ddk/mountmgr.h"
|
||||||
|
|
||||||
extern void initialize_hal(void);
|
extern void initialize_hal(void) DECLSPEC_HIDDEN;
|
||||||
extern void initialize_diskarbitration(void);
|
extern void initialize_diskarbitration(void) DECLSPEC_HIDDEN;
|
||||||
|
|
||||||
/* device functions */
|
/* device functions */
|
||||||
|
|
||||||
|
@ -53,21 +53,21 @@ enum device_type
|
||||||
};
|
};
|
||||||
|
|
||||||
extern NTSTATUS add_volume( const char *udi, const char *device, const char *mount_point,
|
extern NTSTATUS add_volume( const char *udi, const char *device, const char *mount_point,
|
||||||
enum device_type type, const GUID *guid );
|
enum device_type type, const GUID *guid ) DECLSPEC_HIDDEN;
|
||||||
extern NTSTATUS remove_volume( const char *udi );
|
extern NTSTATUS remove_volume( const char *udi ) DECLSPEC_HIDDEN;
|
||||||
extern NTSTATUS add_dos_device( int letter, const char *udi, const char *device,
|
extern NTSTATUS add_dos_device( int letter, const char *udi, const char *device,
|
||||||
const char *mount_point, enum device_type type, const GUID *guid );
|
const char *mount_point, enum device_type type, const GUID *guid ) DECLSPEC_HIDDEN;
|
||||||
extern NTSTATUS remove_dos_device( int letter, const char *udi );
|
extern NTSTATUS remove_dos_device( int letter, const char *udi ) DECLSPEC_HIDDEN;
|
||||||
extern NTSTATUS query_dos_device( int letter, enum device_type *type, char **device, char **mount_point );
|
extern NTSTATUS query_dos_device( int letter, enum device_type *type, char **device, char **mount_point ) DECLSPEC_HIDDEN;
|
||||||
extern NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path );
|
extern NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path ) DECLSPEC_HIDDEN;
|
||||||
|
|
||||||
/* mount point functions */
|
/* mount point functions */
|
||||||
|
|
||||||
struct mount_point;
|
struct mount_point;
|
||||||
|
|
||||||
extern struct mount_point *add_dosdev_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
extern struct mount_point *add_dosdev_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
||||||
int drive );
|
int drive ) DECLSPEC_HIDDEN;
|
||||||
extern struct mount_point *add_volume_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
extern struct mount_point *add_volume_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
||||||
const GUID *guid );
|
const GUID *guid ) DECLSPEC_HIDDEN;
|
||||||
extern void delete_mount_point( struct mount_point *mount );
|
extern void delete_mount_point( struct mount_point *mount ) DECLSPEC_HIDDEN;
|
||||||
extern void set_mount_point_id( struct mount_point *mount, const void *id, unsigned int id_len );
|
extern void set_mount_point_id( struct mount_point *mount, const void *id, unsigned int id_len ) DECLSPEC_HIDDEN;
|
||||||
|
|
Loading…
Reference in New Issue