summaryrefslogtreecommitdiff
path: root/salhelper/test/Symbols/samplelib.hxx
blob: d5986ad67c5c9801f15eb1cd8ae801b77dd79e0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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