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.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/salhelper/test/Symbols/samplelib.hxx b/salhelper/test/Symbols/samplelib.hxx
index e2d956591bb5..d1213f6dea8b 100644
--- a/salhelper/test/Symbols/samplelib.hxx
+++ b/salhelper/test/Symbols/samplelib.hxx
@@ -24,18 +24,18 @@
struct SampleLib_Api
{
- sal_Int32 (SAL_CALL *funcA)( sal_Int32 );
- double (SAL_CALL *funcB)( double );
+ sal_Int32 (*funcA)( sal_Int32 );
+ double (*funcB)( double );
};
-typedef SampleLib_Api* (SAL_CALL *InitSampleLib_Api)(void);
+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 funcA( sal_Int32 a);
+double funcB( double a);
#endif