summaryrefslogtreecommitdiff
path: root/src/test/fakeLegacyService.fidl
blob: 6aaa8a80bb155b18275c87c1cc89c27e64270c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package fake.legacy.service

interface LegacyInterface {
    version { major 1 minor 0 }

    method TestMethod {
        in {
            Int32 input
        }
        out {
            Int32 val1
            Int32 val2
        }
    }

    method OtherTestMethod {
        out {
            String greeting
            Int32 identifier
        }
    }
    
    method finish {}
}