mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
19 lines
326 B
Text
19 lines
326 B
Text
|
//file hello.idl
|
||
|
[
|
||
|
uuid(7a98c250-6808-11cf-b73b-00aa00b677a7),
|
||
|
version(1.0)
|
||
|
]
|
||
|
interface hello
|
||
|
{
|
||
|
|
||
|
typedef long CTXTYPE;
|
||
|
typedef [context_handle] CTXTYPE *PCTXTYPE;
|
||
|
|
||
|
void CtxOpen( [out] PCTXTYPE *pphContext,
|
||
|
[in] long Value);
|
||
|
|
||
|
void CtxHello( [in] PCTXTYPE phContext );
|
||
|
|
||
|
void CtxClose( [in, out] PCTXTYPE *pphContext );
|
||
|
|
||
|
}
|