diff options
| author | Mason Reed <mason@vector35.com> | 2024-10-23 20:47:31 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-10-24 17:03:11 -0400 |
| commit | e151425087b6c0ee8c4d099bfc2d6d1268201db0 (patch) | |
| tree | 25160cf81aa6d650cf1497a078acc50f0062757c /plugins/warp/fixtures/src/library.h | |
| parent | 0f53c21d6a7abbfd48fd59ec7c15586f02777b7e (diff) | |
Add WARP integration
https://github.com/Vector35/warp/
Diffstat (limited to 'plugins/warp/fixtures/src/library.h')
| -rw-r--r-- | plugins/warp/fixtures/src/library.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/warp/fixtures/src/library.h b/plugins/warp/fixtures/src/library.h new file mode 100644 index 00000000..ec7a6e63 --- /dev/null +++ b/plugins/warp/fixtures/src/library.h @@ -0,0 +1,11 @@ +#pragma once + +struct MyStruct { + int a; + int b; + const char* c; + struct MyStruct* d; +}; + +int myFunction(int x); +struct MyStruct myFunction2(int x);
\ No newline at end of file |
