mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
422 B
31 lines
422 B
/*++
|
|
|
|
Copyright (C) Microsoft Corporation, 1994 - 1999
|
|
|
|
Module Name:
|
|
|
|
rpcws.idl
|
|
|
|
Abstract:
|
|
|
|
RPC interface used in working set performance test
|
|
|
|
Author:
|
|
|
|
Mario Goertzel (mariogo) 29-Mar-1994
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
[
|
|
uuid(b55d3725-2d7b-101b-9d36-00000b65c48d),
|
|
version(1.0)
|
|
]
|
|
interface rpcws
|
|
{
|
|
void Call([in] handle_t b);
|
|
void Flush([in] handle_t b);
|
|
void Shutdown([in] handle_t b);
|
|
}
|
|
|