Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
88cc4659
Commit
88cc4659
authored
Jul 29, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Aug 01, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hidclass.sys: Remove DECLSPEC_HIDDEN usage.
parent
1b99f38b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
hid.h
dlls/hidclass.sys/hid.h
+7
-7
No files found.
dlls/hidclass.sys/hid.h
View file @
88cc4659
...
...
@@ -118,15 +118,15 @@ typedef struct _minidriver
}
minidriver
;
void
call_minidriver
(
ULONG
code
,
DEVICE_OBJECT
*
device
,
void
*
in_buff
,
ULONG
in_size
,
void
*
out_buff
,
ULONG
out_size
,
IO_STATUS_BLOCK
*
io
)
DECLSPEC_HIDDEN
;
void
*
out_buff
,
ULONG
out_size
,
IO_STATUS_BLOCK
*
io
);
/* Internal device functions */
void
HID_StartDeviceThread
(
DEVICE_OBJECT
*
device
)
DECLSPEC_HIDDEN
;
void
HID_StartDeviceThread
(
DEVICE_OBJECT
*
device
)
;
void
hid_queue_remove_pending_irps
(
struct
hid_queue
*
queue
);
void
hid_queue_destroy
(
struct
hid_queue
*
queue
);
NTSTATUS
WINAPI
pdo_ioctl
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
DECLSPEC_HIDDEN
;
NTSTATUS
WINAPI
pdo_read
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
DECLSPEC_HIDDEN
;
NTSTATUS
WINAPI
pdo_write
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
DECLSPEC_HIDDEN
;
NTSTATUS
WINAPI
pdo_create
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
DECLSPEC_HIDDEN
;
NTSTATUS
WINAPI
pdo_close
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
DECLSPEC_HIDDEN
;
NTSTATUS
WINAPI
pdo_ioctl
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
;
NTSTATUS
WINAPI
pdo_read
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
;
NTSTATUS
WINAPI
pdo_write
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
;
NTSTATUS
WINAPI
pdo_create
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
;
NTSTATUS
WINAPI
pdo_close
(
DEVICE_OBJECT
*
device
,
IRP
*
irp
)
;
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