diff options
Diffstat (limited to 'source4/librpc/ndr/ndr_echo.h')
-rw-r--r-- | source4/librpc/ndr/ndr_echo.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source4/librpc/ndr/ndr_echo.h b/source4/librpc/ndr/ndr_echo.h index ba82a6ad67..a5f6a2998e 100644 --- a/source4/librpc/ndr/ndr_echo.h +++ b/source4/librpc/ndr/ndr_echo.h @@ -56,12 +56,21 @@ struct echo_SourceData { }; +struct echo_ServerRole { + uint16 role; +}; + +union echo_PolicyInformation { +/* [case(6)] */ struct echo_ServerRole role; +}; + struct TestCall { struct { - const char *s; + uint16 level; } in; struct { + union echo_PolicyInformation *info; } out; }; |