1 | /* |
2 | * This Source Code Form is subject to the terms of the Mozilla Public |
3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
5 | * |
6 | * Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. |
7 | */ |
8 | |
9 | #ifndef _MAL_SESSION_H |
10 | #define _MAL_SESSION_H |
11 | |
12 | #include "mal_scenario.h" |
13 | |
14 | mal_export str malBootstrap(void); |
15 | mal_export str MSserveClient(Client cntxt); |
16 | mal_export str MSinitClientPrg(Client cntxt, str mod, str nme); |
17 | mal_export void MSscheduleClient(str command, str challenge, bstream *fin, stream *fout, protocol_version protocol, size_t blocksize); |
18 | |
19 | mal_export str MALreader(Client c); |
20 | mal_export str MALinitClient(Client c); |
21 | mal_export str MALexitClient(Client c); |
22 | mal_export str MALparser(Client c); |
23 | mal_export str MALengine(Client c); |
24 | mal_export str MALcallback(Client c, str msg); |
25 | mal_export void MSresetInstructions(MalBlkPtr mb, int start); |
26 | mal_export void MSresetVariables(Client cntxt, MalBlkPtr mb, MalStkPtr glb, int start); |
27 | mal_export int (MalBlkPtr mb); |
28 | |
29 | #endif /* _MAL_SESSION_H */ |
30 | |
31 | |