source: git/Singular/slInit.h @ 28e0ac8

fieker-DuValspielwiese
Last change on this file since 28e0ac8 was 6b32990, checked in by Olaf Bachmann <obachman@…>, 23 years ago
* dynamic kernel modules for MP and DBM links * p_Procs improvements git-svn-id: file:///usr/local/Singular/svn/trunk@4865 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 903 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: slInit.h,v 1.1 2000-12-12 08:44:54 obachman Exp $
10 *******************************************************************/
11#ifndef SL_INIT_H
12#define SL_INIT_H
13
14#include "mod2.h"
15#include "silink.h"
16
17#ifdef HAVE_MPSR
18si_link_extension slInitMPFileExtension(si_link_extension s);
19si_link_extension slInitMPTcpExtension(si_link_extension s);
20
21typedef int (*BatchDoProc)(const char* port, const char* host);
22BatchDoProc slInitMPBatchDo();
23#endif // HAVE_MPSR
24
25#ifdef HAVE_DBM
26si_link_extension slInitDBMExtension(si_link_extension s);
27#endif
28
29#endif // SL_INIT_H
Note: See TracBrowser for help on using the repository browser.