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
570f446f
Commit
570f446f
authored
Mar 19, 2011
by
Austin English
Committed by
Alexandre Julliard
Mar 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
traffic: Add a stub for TcDeregisterClient.
parent
c643aec1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
traffic.spec
dlls/traffic/traffic.spec
+1
-1
traffic_main.c
dlls/traffic/traffic_main.c
+9
-0
No files found.
dlls/traffic/traffic.spec
View file @
570f446f
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
@ stub TcCloseInterface
@ stub TcCloseInterface
@ stub TcDeleteFilter
@ stub TcDeleteFilter
@ stub TcDeleteFlow
@ stub TcDeleteFlow
@ st
ub TcDeregisterClient
@ st
dcall TcDeregisterClient(ptr)
@ stub TcEnumerateFlows
@ stub TcEnumerateFlows
@ stub TcEnumerateInterfaces
@ stub TcEnumerateInterfaces
@ stub TcGetFlowNameA
@ stub TcGetFlowNameA
...
...
dlls/traffic/traffic_main.c
View file @
570f446f
...
@@ -54,3 +54,12 @@ ULONG WINAPI TcRegisterClient(ULONG version, HANDLE context,
...
@@ -54,3 +54,12 @@ ULONG WINAPI TcRegisterClient(ULONG version, HANDLE context,
if
(
buffer
)
*
buffer
=
INVALID_HANDLE_VALUE
;
if
(
buffer
)
*
buffer
=
INVALID_HANDLE_VALUE
;
return
ERROR_CALL_NOT_IMPLEMENTED
;
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
}
/*****************************************************************************
* TcDeregisterClient [TRAFFIC.@]
*/
ULONG
WINAPI
TcDeregisterClient
(
HANDLE
ClientHandle
)
{
FIXME
(
"%p: stub
\n
"
,
ClientHandle
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
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