office-gobmx/salhelper/test/dynamicloader/samplelib.hxx
Sebastian Spaeth a715e1b3d0 Add vim/emacs modelines to all source files
Fixes #fdo30794
Based on bin/add-modelines script (originally posted in mail
1286706307.1871.1399280959@webmail.messagingengine.com)

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-10-14 17:04:31 +02:00

25 lines
524 B
C++

/* -*- 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: */