translate: support more dereference types
[ia32rtools.git] / tests / deref.seed.h
diff --git a/tests/deref.seed.h b/tests/deref.seed.h
new file mode 100644 (file)
index 0000000..b67b457
--- /dev/null
@@ -0,0 +1,11 @@
+struct struct1 {
+       void (__stdcall *f0)(int a1);
+       struct struct2 *s1;
+};
+
+struct struct2 {
+       int d0;
+       int (__stdcall *f1)(int a1);
+};
+
+extern struct struct1 *ptr_struct1;