traffic: Add a stub for TcDeregisterClient.

This commit is contained in:
Austin English 2011-03-19 16:59:47 -05:00 committed by Alexandre Julliard
parent c643aec175
commit 570f446f8c
2 changed files with 10 additions and 1 deletions

View file

@ -4,7 +4,7 @@
@ stub TcCloseInterface
@ stub TcDeleteFilter
@ stub TcDeleteFlow
@ stub TcDeregisterClient
@ stdcall TcDeregisterClient(ptr)
@ stub TcEnumerateFlows
@ stub TcEnumerateInterfaces
@ stub TcGetFlowNameA

View file

@ -54,3 +54,12 @@ ULONG WINAPI TcRegisterClient(ULONG version, HANDLE context,
if(buffer) *buffer = INVALID_HANDLE_VALUE;
return ERROR_CALL_NOT_IMPLEMENTED;
}
/*****************************************************************************
* TcDeregisterClient [TRAFFIC.@]
*/
ULONG WINAPI TcDeregisterClient(HANDLE ClientHandle)
{
FIXME("%p: stub\n", ClientHandle);
return ERROR_CALL_NOT_IMPLEMENTED;
}