- Set up the real-mode IDT.
[AROS.git] / workbench / utilities / Installer / variables.h
blobdbfa0c5cb3d5fdac26859688dbd924f8ac21f888
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 /* variables.h -- Prototypes to all functions related to variables */
7 #ifndef _VARIABLES_H
8 #define _VARIABLES_H
10 /* Internal function prototypes */
11 extern void *get_variable(char *);
12 extern char *get_var_arg(char *);
13 extern long int get_var_int(char *);
14 extern void set_variable(char *, char *, long int);
15 extern void set_preset_variables(int);
16 #ifdef DEBUG
17 extern void dump_varlist();
18 #endif /* DEBUG */
19 extern void free_varlist();
21 #endif /* _VARIABLES_H */