summaryrefslogtreecommitdiff
path: root/tests/projects/windows/idl/test_rpc/src/example.idl
blob: 1eb750a97ec4942a8523ce4fecd692eb5cc7d3bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
[
    uuid(ba209999-0c6c-11d2-97cf-00c04f8eea45),
    version(1.0)
]
interface MyInterface
{
    const unsigned short INT_ARRAY_LEN = 100;

    void MyRemoteProc( 
        [in] int param1,
        [out] int outArray[INT_ARRAY_LEN]
    );
}