summaryrefslogtreecommitdiff
path: root/testprogs/win32/midltests/todo/midltests-string-in-out-ref.idl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-09-28 09:57:22 +0200
committerStefan Metzmacher <metze@samba.org>2010-09-29 03:08:25 +0200
commite2c305deb1553ab8ba11fa687dcf1c08f2acd88a (patch)
tree3c8f15f32d904731516212631539acc38c3e9948 /testprogs/win32/midltests/todo/midltests-string-in-out-ref.idl
parentad99711f4968cb07b85cead5beb8351f63395004 (diff)
downloadsamba-e2c305deb1553ab8ba11fa687dcf1c08f2acd88a.tar.gz
samba-e2c305deb1553ab8ba11fa687dcf1c08f2acd88a.tar.bz2
samba-e2c305deb1553ab8ba11fa687dcf1c08f2acd88a.zip
midltests/todo: add some random idl files I had tested month ago
metze
Diffstat (limited to 'testprogs/win32/midltests/todo/midltests-string-in-out-ref.idl')
-rw-r--r--testprogs/win32/midltests/todo/midltests-string-in-out-ref.idl33
1 files changed, 33 insertions, 0 deletions
diff --git a/testprogs/win32/midltests/todo/midltests-string-in-out-ref.idl b/testprogs/win32/midltests/todo/midltests-string-in-out-ref.idl
new file mode 100644
index 0000000000..4db6f968d8
--- /dev/null
+++ b/testprogs/win32/midltests/todo/midltests-string-in-out-ref.idl
@@ -0,0 +1,33 @@
+#ifndef MIDLTESTS_C_CODE
+
+[
+ uuid("225b9fcb-eb3d-497b-8b0b-591f049a2507"),
+ pointer_default(unique)
+]
+interface midltests
+{
+ long midltests_fn(
+ [in,out,ref,string] wchar_t *s
+ );
+}
+
+#elif MIDLTESTS_C_CODE
+
+static void midltests(void)
+{
+ wchar_t s[] = { 's', 'a', 'm', 'b', 'a', 0 };
+
+ cli_midltests_fn(s);
+}
+
+long srv_midltests_fn(wchar_t *s)
+{
+ printf("srv_midltests_fn: Start\n");
+ s[1] = 0;
+ s[2] = 'M';
+ s[5] = '4';
+ printf("srv_midltests_fn: End\n");
+ return 0x65757254;
+}
+
+#endif