32 lines
422 B
Plaintext
32 lines
422 B
Plaintext
|
/*++
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
|