close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Ticket #172: tol_init.h

File tol_init.h, 1.2 KB (added by danirus, 21 years ago)

tol_init.h

Line 
1/* tol_init.h: Kernel initialization.
2                   GNU/TOL Language.
3
4   Copyright (C) 2003 - Bayes Decisión, SL (Spain [EU])
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19   USA.
20 */
21
22#ifndef TOL_INIT_H
23
24#include <tol/tol_bcommon.h>
25
26BEGIN_DECLS
27
28TOL_API void InitTolKernel(int lang);
29TOL_API void LoadInitLibrary();
30
31typedef void tgsl_error_handler (const char * reason, const char * file,
32                                   int line, int gsl_errno);
33TOL_API const char * Tol_gsl_strerror (const int gsl_errno);
34TOL_API tgsl_error_handler * Tol_gsl_set_error_handler (tgsl_error_handler * new_handler);
35
36END_DECLS
37
38#endif