1 | #ifndef FOO_H |
---|---|
2 | #define FOO_H |
3 | |
4 | struct LLDB_TEST_API Foo { |
5 | Foo(); |
6 | int x; |
7 | }; |
8 | |
9 | extern LLDB_TEST_API Foo FooObj; |
10 | |
11 | #endif |
12 |
1 | #ifndef FOO_H |
---|---|
2 | #define FOO_H |
3 | |
4 | struct LLDB_TEST_API Foo { |
5 | Foo(); |
6 | int x; |
7 | }; |
8 | |
9 | extern LLDB_TEST_API Foo FooObj; |
10 | |
11 | #endif |
12 |