summaryrefslogtreecommitdiff
path: root/source4/librpc/ndr/ndr_echo.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/librpc/ndr/ndr_echo.h')
-rw-r--r--source4/librpc/ndr/ndr_echo.h22
1 files changed, 20 insertions, 2 deletions
diff --git a/source4/librpc/ndr/ndr_echo.h b/source4/librpc/ndr/ndr_echo.h
index ed187fd4d6..b2c6774c09 100644
--- a/source4/librpc/ndr/ndr_echo.h
+++ b/source4/librpc/ndr/ndr_echo.h
@@ -14,11 +14,11 @@ struct echo_AddOne {
struct echo_EchoData {
struct {
uint32 len;
- uint8 *data;
+ uint8 *in_data;
} in;
struct {
- uint8 *data;
+ uint8 *out_data;
} out;
};
@@ -45,7 +45,25 @@ struct echo_SourceData {
};
+struct Struct1 {
+ uint32 bar;
+ uint32 count;
+ uint32 foo;
+ uint32 *s;
+};
+
+struct TestCall {
+ struct {
+ } in;
+
+ struct {
+ struct Struct1 **s1;
+ } out;
+
+};
+
#define DCERPC_ECHO_ADDONE 0
#define DCERPC_ECHO_ECHODATA 1
#define DCERPC_ECHO_SINKDATA 2
#define DCERPC_ECHO_SOURCEDATA 3
+#define DCERPC_TESTCALL 4