From 4b5e61c518f1159ddc2d3852f97b6726a1c0bd7e Mon Sep 17 00:00:00 2001 From: Joachim Lingner Date: Thu, 19 Apr 2001 14:21:03 +0000 Subject: new --- salhelper/test/Symbols/samplelib.hxx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 salhelper/test/Symbols/samplelib.hxx (limited to 'salhelper/test') diff --git a/salhelper/test/Symbols/samplelib.hxx b/salhelper/test/Symbols/samplelib.hxx new file mode 100644 index 000000000000..3c0813dd0638 --- /dev/null +++ b/salhelper/test/Symbols/samplelib.hxx @@ -0,0 +1,22 @@ +#ifndef __SAMPLELIB_HXX_ +#define __SAMPLELIB_HXX_ + +#include + +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 -- cgit