office-gobmx/salhelper/test/dynamicloader/samplelib.hxx

26 lines
524 B
C++
Raw Normal View History

/* -*- 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);
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */