source: git/Singular/slInit.h @ b14855

spielwiese
Last change on this file since b14855 was 599326, checked in by Kai Krüger <krueger@…>, 14 years ago
Anne, Kai, Frank: - changes to #include "..." statements to allow cleaner build structure - affected directories: omalloc, kernel, Singular - not yet done: IntergerProgramming git-svn-id: file:///usr/local/Singular/svn/trunk@13032 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 844 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/***************************************************************
5 *  File:    slInit.h
6 *  Purpose: declarations of link initialization functions
7 *  Author:  obachman (Olaf Bachmann)
8 *  Created: 12/00
9 *  Version: $Id$
10 *******************************************************************/
11#ifndef SL_INIT_H
12#define SL_INIT_H
13
14#include <Singular/silink.h>
15
16#ifdef HAVE_MPSR
17si_link_extension slInitMPFileExtension(si_link_extension s);
18si_link_extension slInitMPTcpExtension(si_link_extension s);
19
20typedef int (*BatchDoProc)(const char* port, const char* host);
21BatchDoProc slInitMPBatchDo();
22#endif // HAVE_MPSR
23
24#ifdef HAVE_DBM
25si_link_extension slInitDBMExtension(si_link_extension s);
26#endif
27
28#endif // SL_INIT_H
Note: See TracBrowser for help on using the repository browser.