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
bdb4d822
Commit
bdb4d822
authored
Jun 03, 2020
by
Paul Gofman
Committed by
Alexandre Julliard
Jun 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netio.sys: Add stub for WskCaptureProviderNPI().
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1e3ef06d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
netio.c
dlls/netio.sys/netio.c
+9
-0
netio.sys.spec
dlls/netio.sys/netio.sys.spec
+1
-1
wsk.h
include/ddk/wsk.h
+2
-0
No files found.
dlls/netio.sys/netio.c
View file @
bdb4d822
...
@@ -34,6 +34,15 @@
...
@@ -34,6 +34,15 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
netio
);
WINE_DEFAULT_DEBUG_CHANNEL
(
netio
);
NTSTATUS
WINAPI
WskCaptureProviderNPI
(
WSK_REGISTRATION
*
wsk_registration
,
ULONG
wait_timeout
,
WSK_PROVIDER_NPI
*
wsk_provider_npi
)
{
FIXME
(
"wsk_registration %p, wait_timeout %u, wsk_provider_npi %p stub.
\n
"
,
wsk_registration
,
wait_timeout
,
wsk_provider_npi
);
return
STATUS_NOT_IMPLEMENTED
;
}
NTSTATUS
WINAPI
WskRegister
(
WSK_CLIENT_NPI
*
wsk_client_npi
,
WSK_REGISTRATION
*
wsk_registration
)
NTSTATUS
WINAPI
WskRegister
(
WSK_CLIENT_NPI
*
wsk_client_npi
,
WSK_REGISTRATION
*
wsk_registration
)
{
{
FIXME
(
"wsk_client_npi %p, wsk_registration %p stub.
\n
"
,
wsk_client_npi
,
wsk_registration
);
FIXME
(
"wsk_client_npi %p, wsk_registration %p stub.
\n
"
,
wsk_client_npi
,
wsk_registration
);
...
...
dlls/netio.sys/netio.sys.spec
View file @
bdb4d822
...
@@ -384,7 +384,7 @@
...
@@ -384,7 +384,7 @@
@ stub WfpStreamInspectSend
@ stub WfpStreamInspectSend
@ stub WfpStreamIsFilterPresent
@ stub WfpStreamIsFilterPresent
@ stub WfpUninitializeLeastRecentlyUsedList
@ stub WfpUninitializeLeastRecentlyUsedList
@ st
ub WskCaptureProviderNPI
@ st
dcall WskCaptureProviderNPI(ptr long ptr)
@ stdcall WskDeregister(ptr)
@ stdcall WskDeregister(ptr)
@ stub WskQueryProviderCharacteristics
@ stub WskQueryProviderCharacteristics
@ stdcall WskRegister(ptr ptr)
@ stdcall WskRegister(ptr ptr)
...
...
include/ddk/wsk.h
View file @
bdb4d822
...
@@ -112,6 +112,8 @@ typedef struct _WSK_PROVIDER_NPI
...
@@ -112,6 +112,8 @@ typedef struct _WSK_PROVIDER_NPI
NTSTATUS
WINAPI
WskRegister
(
WSK_CLIENT_NPI
*
wsk_client_npi
,
WSK_REGISTRATION
*
wsk_registration
);
NTSTATUS
WINAPI
WskRegister
(
WSK_CLIENT_NPI
*
wsk_client_npi
,
WSK_REGISTRATION
*
wsk_registration
);
void
WINAPI
WskDeregister
(
WSK_REGISTRATION
*
wsk_registration
);
void
WINAPI
WskDeregister
(
WSK_REGISTRATION
*
wsk_registration
);
NTSTATUS
WINAPI
WskCaptureProviderNPI
(
WSK_REGISTRATION
*
wsk_registration
,
ULONG
wait_timeout
,
WSK_PROVIDER_NPI
*
wsk_provider_npi
);
#ifdef __cplusplus
#ifdef __cplusplus
}
}
...
...
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