2f46b8f041
2003/10/01 09:05:11 rt 1.1.68.1: #i19697# No newline at end of file
22 lines
391 B
C++
22 lines
391 B
C++
#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
|