aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/functions.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libsample/functions.h')
-rw-r--r--tests/libsample/functions.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/libsample/functions.h b/tests/libsample/functions.h
index 2629d3907..52a26a7a6 100644
--- a/tests/libsample/functions.h
+++ b/tests/libsample/functions.h
@@ -74,5 +74,11 @@ LIBSAMPLE_API GlobalOverloadFuncEnum overloadedFunc(double val);
LIBSAMPLE_API unsigned int doubleUnsignedInt(unsigned int value);
+LIBSAMPLE_API int acceptInt(int x);
+LIBSAMPLE_API unsigned int acceptUInt(unsigned int x);
+LIBSAMPLE_API long acceptLong(long x);
+LIBSAMPLE_API unsigned long acceptULong(unsigned long x);
+LIBSAMPLE_API double acceptDouble(double x);
+
#endif // FUNCTIONS_H