summaryrefslogtreecommitdiff
path: root/salhelper/test/Symbols/samplelib.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'salhelper/test/Symbols/samplelib.hxx')
-rw-r--r--salhelper/test/Symbols/samplelib.hxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/salhelper/test/Symbols/samplelib.hxx b/salhelper/test/Symbols/samplelib.hxx
new file mode 100644
index 000000000000..d5986ad67c5c
--- /dev/null
+++ b/salhelper/test/Symbols/samplelib.hxx
@@ -0,0 +1,22 @@
+#ifndef __SAMPLELIB_HXX_
+#define __SAMPLELIB_HXX_
+
+#include <sal/types.h>
+
+struct SampleLib_Api
+{
+ sal_Int32 (SAL_CALL *funcA)( sal_Int32 );
+ double (SAL_CALL *funcB)( double );
+};
+
+
+typedef SampleLib_Api* (SAL_CALL *InitSampleLib_Api)(void);
+
+#define SAMPLELIB_INIT_FUNCTION_NAME "initSampleLibApi"
+
+
+sal_Int32 SAL_CALL funcA( sal_Int32 a);
+double SAL_CALL funcB( double a);
+
+
+#endif