source: git/Singular/slInit.h @ eff324

spielwiese
Last change on this file since eff324 was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 826 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 *******************************************************************/
10#ifndef SL_INIT_H
11#define SL_INIT_H
12
13#include <Singular/silink.h>
14
15#ifdef HAVE_MPSR
16si_link_extension slInitMPFileExtension(si_link_extension s);
17si_link_extension slInitMPTcpExtension(si_link_extension s);
18
19typedef int (*BatchDoProc)(const char* port, const char* host);
20BatchDoProc slInitMPBatchDo();
21#endif // HAVE_MPSR
22
23#ifdef HAVE_DBM
24si_link_extension slInitDBMExtension(si_link_extension s);
25#endif
26
27#endif // SL_INIT_H
Note: See TracBrowser for help on using the repository browser.