summaryrefslogtreecommitdiff
path: root/salhelper/test/dynamicloader
diff options
context:
space:
mode:
Diffstat (limited to 'salhelper/test/dynamicloader')
-rw-r--r--salhelper/test/dynamicloader/samplelib.hxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/salhelper/test/dynamicloader/samplelib.hxx b/salhelper/test/dynamicloader/samplelib.hxx
index 7b65a0ceb182..c254470fbbb6 100644
--- a/salhelper/test/dynamicloader/samplelib.hxx
+++ b/salhelper/test/dynamicloader/samplelib.hxx
@@ -24,19 +24,16 @@
struct SampleLib_Api
{
- sal_Int32 (*funcA)( sal_Int32 );
- double (*funcB)( double );
+ sal_Int32 (*funcA)(sal_Int32);
+ double (*funcB)(double);
};
-
typedef SampleLib_Api* (*InitSampleLib_Api)(void);
#define SAMPLELIB_INIT_FUNCTION_NAME "initSampleLibApi"
-
-sal_Int32 SAL_CALL funcA( sal_Int32 a);
-double SAL_CALL funcB( double a);
-
+sal_Int32 SAL_CALL funcA(sal_Int32 a);
+double SAL_CALL funcB(double a);
#endif