/*
// This is the IMike.idl file
// defines IMike for general use
Back to the "
COM Inproc Server in C" tutorial.

*/
// Another style of IDL comment
import "Unknwn.idl";

[
object,
helpstring(
"IMike" ),
uuid(
06F1BAD0-DD14-11d0-AB8F-0000C0148FDB ),
pointer_default( unique )
] interface
IMike : IUnknown
{
HRESULT MikeStoreLong( [in]long lValue );
HRESULT MikeGetLong( [out] long *plValue );
}