Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2c19fc3a
Commit
2c19fc3a
authored
Nov 24, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mountmgr: Remove DECLSPEC_HIDDEN usage.
parent
e04c976f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
22 deletions
+22
-22
mountmgr.h
dlls/mountmgr.sys/mountmgr.h
+12
-12
unixlib.h
dlls/mountmgr.sys/unixlib.h
+10
-10
No files found.
dlls/mountmgr.sys/mountmgr.h
View file @
2c19fc3a
...
...
@@ -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 */
dlls/mountmgr.sys/unixlib.h
View file @
2c19fc3a
...
...
@@ -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
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment