r5450: Add test function for "embedded" conformant arrays
authorJelmer Vernooij <jelmer@samba.org>
Fri, 18 Feb 2005 23:06:13 +0000 (23:06 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:10:47 +0000 (13:10 -0500)
source/librpc/idl/echo.idl

index e563dc41c8132d1f0535f094a28f7196a55ed178..c0a694389821b38f85f299003c49a423418047a5 100644 (file)
@@ -119,4 +119,13 @@ interface rpcecho
                [in,out,ref] echo_Enum2 *foo2,
                [in,out,ref,switch_is(*foo1)] echo_Enum3 *foo3
                );
+
+       typedef struct {
+               uint32 x;
+               [size_is(x)] uint16 surrounding[*];
+       } echo_Surrounding;
+
+       void echo_TestSurrounding(
+               [in,out,ref] echo_Surrounding *data
+       );
 }