mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
1423048911
svn path=/trunk/; revision=26012
19 lines
326 B
Plaintext
19 lines
326 B
Plaintext
//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 );
|
|
|
|
} |