diff options
Diffstat (limited to 'modules/helptools/includes')
-rwxr-xr-x | modules/helptools/includes/dynlib_helptools.h | 28 | ||||
-rwxr-xr-x | modules/helptools/includes/gw_helptools.h | 26 |
2 files changed, 54 insertions, 0 deletions
diff --git a/modules/helptools/includes/dynlib_helptools.h b/modules/helptools/includes/dynlib_helptools.h new file mode 100755 index 000000000..6af53ce21 --- /dev/null +++ b/modules/helptools/includes/dynlib_helptools.h @@ -0,0 +1,28 @@ +/* +* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +* Copyright (C) DIGITEO - 2009 - Allan CORNET +* +* This file must be used under the terms of the CeCILL. +* This source file is licensed as described in the file COPYING, which +* you should have received as part of this distribution. The terms +* are also available at +* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt +* +*/ + +/*--------------------------------------------------------------------------*/ +#ifndef __DYNLIB_HELPTOOLS_H__ +#define __DYNLIB_HELPTOOLS_H__ + +#ifdef _MSC_VER +#ifdef HELPTOOLS_EXPORTS +#define HELPTOOLS_IMPEXP __declspec(dllexport) +#else +#define HELPTOOLS_IMPEXP __declspec(dllimport) +#endif +#else +#define HELPTOOLS_IMPEXP +#endif + +#endif /* __DYNLIB_HELPTOOLS_H__ */ +/*--------------------------------------------------------------------------*/ diff --git a/modules/helptools/includes/gw_helptools.h b/modules/helptools/includes/gw_helptools.h new file mode 100755 index 000000000..289699e45 --- /dev/null +++ b/modules/helptools/includes/gw_helptools.h @@ -0,0 +1,26 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008 - DIGITEO - Sylvestre LEDRU + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + * + */ + +/*--------------------------------------------------------------------------*/ +#ifndef __GW_HELPTOOLS__ +#define __GW_HELPTOOLS__ +/*--------------------------------------------------------------------------*/ +#include "dynlib_helptools.h" +/*--------------------------------------------------------------------------*/ +HELPTOOLS_IMPEXP int gw_helptools(void); + +/*--------------------------------------------------------------------------*/ +HELPTOOLS_IMPEXP int sci_buildDoc(char *fname, unsigned long fname_len); + +/*--------------------------------------------------------------------------*/ +#endif /* __GW_HELPTOOLS__ */ +/*--------------------------------------------------------------------------*/ |