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 | /* (co) M.L. Kersten */ |
10 | #ifndef _SQL_ORDERIDX_DEF |
11 | #define _SQL_ORDERIDX_DEF |
12 | |
13 | /* #define DEBUG_SQL_ORDERIDX */ |
14 | |
15 | #include "sql.h" |
16 | |
17 | #ifdef WIN32 |
18 | #ifndef LIBSQL |
19 | #define sql5_export extern __declspec(dllimport) |
20 | #else |
21 | #define sql5_export extern __declspec(dllexport) |
22 | #endif |
23 | #else |
24 | #define sql5_export extern |
25 | #endif |
26 | |
27 | sql5_export str sql_createorderindex(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); |
28 | sql5_export str sql_droporderindex(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); |
29 | |
30 | #endif /* _SQL_ORDERIDX_DEF */ |
31 | |