Module: wine Branch: master Commit: 2c19fc3a3e33fe90ff13c09446bdc925fa13c873 URL: https://gitlab.winehq.org/wine/wine/-/commit/2c19fc3a3e33fe90ff13c09446bdc92...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Nov 24 11:33:15 2023 +0100
mountmgr: Remove DECLSPEC_HIDDEN usage.
---
dlls/mountmgr.sys/mountmgr.h | 24 ++++++++++++------------ dlls/mountmgr.sys/unixlib.h | 20 ++++++++++---------- 2 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/dlls/mountmgr.sys/mountmgr.h b/dlls/mountmgr.sys/mountmgr.h index 143401e3b9b..b1de312dffb 100644 --- a/dlls/mountmgr.sys/mountmgr.h +++ b/dlls/mountmgr.sys/mountmgr.h @@ -50,9 +50,9 @@ enum device_type DEVICE_RAMDISK };
-extern NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path ) DECLSPEC_HIDDEN; -extern NTSTATUS WINAPI serial_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path ) DECLSPEC_HIDDEN; -extern NTSTATUS WINAPI parallel_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 ); +extern NTSTATUS WINAPI parallel_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path );
enum scsi_device_type { @@ -90,24 +90,24 @@ struct scsi_info
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, - const struct scsi_info *info ) DECLSPEC_HIDDEN; -extern NTSTATUS remove_volume( const char *udi ) DECLSPEC_HIDDEN; + const struct scsi_info *info ); +extern NTSTATUS remove_volume( const char *udi ); 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 struct scsi_info *info ) DECLSPEC_HIDDEN; -extern NTSTATUS remove_dos_device( int letter, const char *udi ) DECLSPEC_HIDDEN; + const struct scsi_info *info ); +extern NTSTATUS remove_dos_device( int letter, const char *udi ); 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 */
struct mount_point;
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, - const GUID *guid ) DECLSPEC_HIDDEN; -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 ) DECLSPEC_HIDDEN; + const GUID *guid ); +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 );
#endif /* __WINE_MOUNTMGR_H */ diff --git a/dlls/mountmgr.sys/unixlib.h b/dlls/mountmgr.sys/unixlib.h index 93e812a516f..41f64251e22 100644 --- a/dlls/mountmgr.sys/unixlib.h +++ b/dlls/mountmgr.sys/unixlib.h @@ -179,13 +179,13 @@ enum mountmgr_funcs
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 *disk_serial, const struct scsi_info *info ) DECLSPEC_HIDDEN; -extern void run_dbus_loop(void) DECLSPEC_HIDDEN; -extern void run_diskarbitration_loop(void) DECLSPEC_HIDDEN; - -extern NTSTATUS dhcp_request( void *args ) DECLSPEC_HIDDEN; -extern NTSTATUS query_symbol_file( void *args ) DECLSPEC_HIDDEN; -extern NTSTATUS read_credential( void *args ) DECLSPEC_HIDDEN; -extern NTSTATUS write_credential( void *args ) DECLSPEC_HIDDEN; -extern NTSTATUS delete_credential( void *args ) DECLSPEC_HIDDEN; -extern NTSTATUS enumerate_credentials( void *args ) DECLSPEC_HIDDEN; + const char *disk_serial, const struct scsi_info *info ); +extern void run_dbus_loop(void); +extern void run_diskarbitration_loop(void); + +extern NTSTATUS dhcp_request( void *args ); +extern NTSTATUS query_symbol_file( void *args ); +extern NTSTATUS read_credential( void *args ); +extern NTSTATUS write_credential( void *args ); +extern NTSTATUS delete_credential( void *args ); +extern NTSTATUS enumerate_credentials( void *args );