summaryrefslogtreecommitdiffstats
path: root/testprogs/win32/midltests/todo/midltests_pointer_default.idl
blob: 9e0c18f677ae8c62c38112ba0dc4cc775222099a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[
  uuid("225b9fcb-eb3d-497b-8b0b-591f049a2507"),
  pointer_default(ptr)
]
interface midltests
{
	struct midltests_struct {
		[ref] long ****p;
		[ref] long **a;
		[ref] long **b;
		[ref] long **c;
	};

	void midltests_fn(
		//[in] long size,
		[in,out,ref] struct midltests_struct *s
		//[in,ref,size_is(,size)] long ***array
	);

}