diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h b/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h new file mode 100644 index 0000000..78b9e3f --- /dev/null +++ b/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h @@ -0,0 +1,10 @@ +struct foo; + +struct sub_foo +{ + int sub_1; + char *sub_2; +}; + +LLDB_TEST_API struct foo *GetMeAFoo(); +LLDB_TEST_API struct sub_foo *GetMeASubFoo(struct foo *in_foo); |