Commit 2c19fc3a authored by Alexandre Julliard's avatar Alexandre Julliard

mountmgr: Remove DECLSPEC_HIDDEN usage.

parent e04c976f
...@@ -50,9 +50,9 @@ enum device_type ...@@ -50,9 +50,9 @@ enum device_type
DEVICE_RAMDISK DEVICE_RAMDISK
}; };
extern NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path ) DECLSPEC_HIDDEN; extern NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path );
extern NTSTATUS WINAPI serial_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path ) DECLSPEC_HIDDEN; extern NTSTATUS WINAPI serial_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path );
extern NTSTATUS WINAPI parallel_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path ) DECLSPEC_HIDDEN; extern NTSTATUS WINAPI parallel_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path );
enum scsi_device_type enum scsi_device_type
{ {
...@@ -90,24 +90,24 @@ struct scsi_info ...@@ -90,24 +90,24 @@ struct scsi_info
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, const char *disk_serial, enum device_type type, const GUID *guid, const char *disk_serial,
const struct scsi_info *info ) DECLSPEC_HIDDEN; const struct scsi_info *info );
extern NTSTATUS remove_volume( const char *udi ) DECLSPEC_HIDDEN; extern NTSTATUS remove_volume( const char *udi );
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,
const struct scsi_info *info ) DECLSPEC_HIDDEN; const struct scsi_info *info );
extern NTSTATUS remove_dos_device( int letter, const char *udi ) DECLSPEC_HIDDEN; extern NTSTATUS remove_dos_device( int letter, const char *udi );
extern NTSTATUS query_unix_drive( void *buff, SIZE_T insize, SIZE_T outsize, extern NTSTATUS query_unix_drive( void *buff, SIZE_T insize, SIZE_T outsize,
IO_STATUS_BLOCK *iosb ) DECLSPEC_HIDDEN; IO_STATUS_BLOCK *iosb );
/* 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 ) DECLSPEC_HIDDEN; int drive );
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 ) DECLSPEC_HIDDEN; const GUID *guid );
extern void delete_mount_point( struct mount_point *mount ) DECLSPEC_HIDDEN; extern void delete_mount_point( struct mount_point *mount );
extern void set_mount_point_id( struct mount_point *mount, const void *id, unsigned int id_len ) DECLSPEC_HIDDEN; extern void set_mount_point_id( struct mount_point *mount, const void *id, unsigned int id_len );
#endif /* __WINE_MOUNTMGR_H */ #endif /* __WINE_MOUNTMGR_H */
...@@ -179,13 +179,13 @@ enum mountmgr_funcs ...@@ -179,13 +179,13 @@ enum mountmgr_funcs
extern void queue_device_op( enum device_op op, const char *udi, const char *device, extern void queue_device_op( enum device_op op, 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,
const char *disk_serial, const struct scsi_info *info ) DECLSPEC_HIDDEN; const char *disk_serial, const struct scsi_info *info );
extern void run_dbus_loop(void) DECLSPEC_HIDDEN; extern void run_dbus_loop(void);
extern void run_diskarbitration_loop(void) DECLSPEC_HIDDEN; extern void run_diskarbitration_loop(void);
extern NTSTATUS dhcp_request( void *args ) DECLSPEC_HIDDEN; extern NTSTATUS dhcp_request( void *args );
extern NTSTATUS query_symbol_file( void *args ) DECLSPEC_HIDDEN; extern NTSTATUS query_symbol_file( void *args );
extern NTSTATUS read_credential( void *args ) DECLSPEC_HIDDEN; extern NTSTATUS read_credential( void *args );
extern NTSTATUS write_credential( void *args ) DECLSPEC_HIDDEN; extern NTSTATUS write_credential( void *args );
extern NTSTATUS delete_credential( void *args ) DECLSPEC_HIDDEN; extern NTSTATUS delete_credential( void *args );
extern NTSTATUS enumerate_credentials( void *args ) DECLSPEC_HIDDEN; extern NTSTATUS enumerate_credentials( void *args );
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment