Merge branch 'v4-0-trivial' into v4-0-python
[samba.git] / testprogs / win32 / midltests / midltests.idl
1 #ifndef MIDLTESTS_C_CODE
2
3 [
4   uuid("225b9fcb-eb3d-497b-8b0b-591f049a2507"),
5   pointer_default(unique)
6 ]
7 interface midltests
8 {
9         long midltests_fn(
10         );
11 }
12
13 #elif MIDLTESTS_C_CODE
14
15 static void midltests(void)
16 {
17         cli_midltests_fn();
18 }
19
20 long srv_midltests_fn(void)
21 {
22         printf("srv_midltests_fn: Start\n");
23         printf("srv_midltests_fn: End\n");
24         return 0x65757254;
25 }
26
27 #endif