summaryrefslogtreecommitdiff
path: root/testprogs/win32/midltests/midltests.idl
blob: 1932549c565cd39625e15ac052a10323d9da6be5 (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
#ifndef MIDLTESTS_C_CODE

[
  uuid("225b9fcb-eb3d-497b-8b0b-591f049a2507"),
  pointer_default(unique)
]
interface midltests
{
	long midltests_fn(
	);
}

#elif MIDLTESTS_C_CODE

static void midltests(void)
{
	cli_midltests_fn();
}

long srv_midltests_fn(void)
{
	printf("srv_midltests_fn: Start\n");
	printf("srv_midltests_fn: End\n");
	return 0x65757254;
}

#endif