aboutsummaryrefslogtreecommitdiff
path: root/tests/include
diff options
context:
space:
mode:
authorGanesh Viswanathan <dev@genotrance.com>2020-04-13 10:18:49 -0500
committerGanesh Viswanathan <dev@genotrance.com>2020-04-13 12:46:41 -0500
commitf23d17d0b2f2e6bd66b0d685461d9dd1c2070918 (patch)
tree59335ce2603518b2512328b758ec29389f0eb2d5 /tests/include
parentb2de34328a92c6c9a63e3db12d4f78e7e5831d8c (diff)
downloadnimterop-f23d17d0b2f2e6bd66b0d685461d9dd1c2070918.tar.gz
nimterop-f23d17d0b2f2e6bd66b0d685461d9dd1c2070918.zip
Fix #185 - forward decl symbol change
Diffstat (limited to 'tests/include')
-rw-r--r--tests/include/tast2.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/include/tast2.h b/tests/include/tast2.h
index 4854eb7..76aadc9 100644
--- a/tests/include/tast2.h
+++ b/tests/include/tast2.h
@@ -162,6 +162,14 @@ struct GPU_Target
char *x, y, **z;
};
+// Issue #185
+struct SDL_AudioCVT;
+
+typedef struct SDL_AudioCVT
+{
+ int needed;
+} SDL_AudioCVT;
+
// DUPLICATES
@@ -318,6 +326,14 @@ struct GPU_Target
char *x, y, **z;
};
+// Issue #185
+struct SDL_AudioCVT;
+
+typedef struct SDL_AudioCVT
+{
+ int needed;
+} SDL_AudioCVT;
+
#endif