summaryrefslogtreecommitdiff
path: root/test/serialization/generated_serializer/include/libcamera/ipa/test.mojom
blob: 5f200885ecd0af493b9694d16ca1f59826cade7e (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
25
26
27
28
29
30
31
32
33
/* SPDX-License-Identifier: LGPL-2.1-or-later */

module ipa.test;

enum IPAOperationCode {
	IPAOperationNone,
	IPAOperationInit,
	IPAOperationStart,
	IPAOperationStop,
};

struct IPASettings {};

struct TestStruct {
	map<string, string> m;
	array<string> a;
	string s1;
	string s2;
	int32 i;
	string s3;
};

interface IPATestInterface {
	init(IPASettings settings) => (int32 ret);
	start() => (int32 ret);
	stop();

	test(TestStruct s);
};

interface IPATestEventInterface {
	dummyEvent(uint32 val);
};