summaryrefslogtreecommitdiff
path: root/salhelper
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-04-19 14:26:45 +0000
committerJoachim Lingner <jl@openoffice.org>2001-04-19 14:26:45 +0000
commitb1b2a9adf7698a762f1dfc8495d56ee1761e1f9f (patch)
tree640c66a8ebfaa0a6f07a57d57ac00858b25b0c1a /salhelper
parentbc6a2cdcb6ee466aaebc428a58eed93803f7016d (diff)
*** empty log message ***
Diffstat (limited to 'salhelper')
-rw-r--r--salhelper/test/dynamicloader/samplelib.hxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/salhelper/test/dynamicloader/samplelib.hxx b/salhelper/test/dynamicloader/samplelib.hxx
new file mode 100644
index 000000000000..3c0813dd0638
--- /dev/null
+++ b/salhelper/test/dynamicloader/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 \ No newline at end of file