Initial revision
[ssr] / StraySrc / SDLS / cdll / h / decode
1 /*
2 * decode.h
3 *
4 * Find all the symbols in an ALF file. This will be extended in future to
5 * handle AOF files, and will be part of the DLL Binder.
6 *
7 * © 1994-1998 Straylight
8 */
9
10 /*----- Licensing note ----------------------------------------------------*
11 *
12 * This file is part of Straylight's Dynamic Linking System (SDLS)
13 *
14 * SDLS is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
19 * SDLS is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with SDLS. If not, write to the Free Software Foundation,
26 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29 #ifndef __decode_h
30 #define __decode_h
31
32 #ifndef __hashtable_h
33 #include "hashtable.h"
34 #endif
35
36 int decode(hashtable h,char *filename);
37
38 #endif