2010-10-14 01:30:07 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2001-04-19 09:26:45 -05:00
|
|
|
#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);
|
|
|
|
|
|
|
|
|
2003-10-06 09:51:47 -05:00
|
|
|
#endif
|
2010-10-14 01:30:07 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|