diff options
author | Joachim Lingner <jl@openoffice.org> | 2001-04-19 14:21:03 +0000 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2001-04-19 14:21:03 +0000 |
commit | 287bb2cfd12e728996b0001bf2dae645c255d17d (patch) | |
tree | 6abca10f3853b66dfe1256e3f2f78abca54e1203 /salhelper/test | |
parent | 1c5c140914858ee6c2e3241e0900627488eb1287 (diff) |
new
Diffstat (limited to 'salhelper/test')
-rw-r--r-- | salhelper/test/Symbols/samplelib.hxx | 22 |
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 000000000..3c0813dd0 --- /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
\ No newline at end of file |