aboutsummaryrefslogtreecommitdiff
path: root/tests/include/tast2.h
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 10:19:34 -0500
commit7925e31126085dd20c1be6472e81f8a6a14d2611 (patch)
treeb427568ab706faff0a65894d03b6da39bd993fbc /tests/include/tast2.h
parent9cd39600d43c90045b0da6873900881449e6d609 (diff)
downloadnimterop-issue185.tar.gz
nimterop-issue185.zip
Fix #185 - forward decl symbol changeissue185
Diffstat (limited to 'tests/include/tast2.h')
-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