Initial revision
[ssr] / StraySrc / Sculptrix / sculptrix / sh / config
1 ;
2 ; config.sh
3 ;
4 ; Configuration interface for Sculptrix
5 ;
6 ; © 1995-1998 Straylight
7 ;
8
9 ;----- Licensing note -------------------------------------------------------
10 ;
11 ; This file is part of Straylight's Sculptrix.
12 ;
13 ; Sculptrix is free software; you can redistribute it and/or modify
14 ; it under the terms of the GNU General Public License as published by
15 ; the Free Software Foundation; either version 2, or (at your option)
16 ; any later version.
17 ;
18 ; Sculptrix is distributed in the hope that it will be useful,
19 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ; GNU General Public License for more details.
22 ;
23 ; You should have received a copy of the GNU General Public License
24 ; along with Sculptrix. If not, write to the Free Software Foundation,
25 ; 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26
27 ;----- Overview -------------------------------------------------------------
28 ;
29 ; Functions provided:
30 ;
31 ; config_set
32 ; config_read
33 ; config_load
34
35 [ :LNOT::DEF:config__dfn
36 GBLL config__dfn
37
38 ; --- config_set ---
39 ;
40 ; On entry: R0 == pointer to config buffer
41 ;
42 ; On exit: --
43 ;
44 ; Use: Reads the config buffer into workspace.
45
46 IMPORT config_set
47
48 ; --- config_read ---
49 ;
50 ; On entry: R0 == pointer to a buffer
51 ;
52 ; On exit: --
53 ;
54 ; Use: Writes the config into a buffer
55
56 IMPORT config_read
57
58 ; --- config_load ---
59 ;
60 ; On entry: R0 == pointer to filename
61 ;
62 ; On exit: --
63 ;
64 ; Use: Loads a configuration file.
65
66 IMPORT config_load
67
68 ]
69
70 ;----- That's all, folks ----------------------------------------------------
71
72 END