summaryrefslogtreecommitdiff
path: root/salhelper/test/Symbols/samplelib.hxx
blob: fbe96c372a84a74c6526368b8923a68f48024cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#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: */