Deleted Added
full compact
sade.h (8336) sade.h (8347)
1/*
2 * The new sysinstall program.
3 *
4 * This is probably the last attempt in the `sysinstall' line, the next
5 * generation being slated to essentially a complete rewrite.
6 *
1/*
2 * The new sysinstall program.
3 *
4 * This is probably the last attempt in the `sysinstall' line, the next
5 * generation being slated to essentially a complete rewrite.
6 *
7 * $Id: sysinstall.h,v 1.10 1995/05/07 02:04:29 jkh Exp $
7 * $Id: sysinstall.h,v 1.11 1995/05/07 23:37:34 jkh Exp $
8 *
9 * Copyright (c) 1995
10 * Jordan Hubbard. All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright

--- 182 unchanged lines hidden (view full) ---

198extern Boolean OnVTY; /* On a syscons VTY? */
199extern Variable *VarHead; /* The head of the variable chain */
200extern unsigned int Dists; /* Which distributions we want */
201extern unsigned int SrcDists; /* Which src distributions we want */
202
203
204/*** Prototypes ***/
205
8 *
9 * Copyright (c) 1995
10 * Jordan Hubbard. All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright

--- 182 unchanged lines hidden (view full) ---

198extern Boolean OnVTY; /* On a syscons VTY? */
199extern Variable *VarHead; /* The head of the variable chain */
200extern unsigned int Dists; /* Which distributions we want */
201extern unsigned int SrcDists; /* Which src distributions we want */
202
203
204/*** Prototypes ***/
205
206/* command.c */
207extern void command_clear(void);
208extern void command_sort(void);
209extern void command_execute(void);
210extern void command_add(char *key, char *fmt, ...);
211
206/* globals.c */
207extern void globalsInit(void);
208
209/* install.c */
210extern int installCustom(char *str);
211extern int installExpress(char *str);
212extern int installMaint(char *str);
213

--- 19 unchanged lines hidden (view full) ---

233 char *mono, const u_char m_termcap[]);
234extern void systemChangeScreenmap(const u_char newmap[]);
235extern int vsystem(char *fmt, ...);
236
237/* disks.c */
238extern void partition_disks(struct disk **disks);
239extern int write_disks(struct disk **disks);
240extern void make_filesystems(struct disk **disks);
212/* globals.c */
213extern void globalsInit(void);
214
215/* install.c */
216extern int installCustom(char *str);
217extern int installExpress(char *str);
218extern int installMaint(char *str);
219

--- 19 unchanged lines hidden (view full) ---

239 char *mono, const u_char m_termcap[]);
240extern void systemChangeScreenmap(const u_char newmap[]);
241extern int vsystem(char *fmt, ...);
242
243/* disks.c */
244extern void partition_disks(struct disk **disks);
245extern int write_disks(struct disk **disks);
246extern void make_filesystems(struct disk **disks);
241extern void cpio_extract(struct disk **disks);
247extern void cpio_extract(void);
242extern void extract_dists(struct disk **disks);
243extern void install_configuration_files(struct disk **disks);
244extern void do_final_setup(struct disk **disks);
245
246/* dmenu.c */
247extern void dmenuOpen(DMenu *menu, int *choice, int *scroll,
248 int *curr, int *max);
249

--- 12 unchanged lines hidden (view full) ---

262
263/* termcap.c */
264extern int set_termcap(void);
265
266/* msg.c */
267extern void msgInfo(char *fmt, ...);
268extern void msgYap(char *fmt, ...);
269extern void msgWarn(char *fmt, ...);
248extern void extract_dists(struct disk **disks);
249extern void install_configuration_files(struct disk **disks);
250extern void do_final_setup(struct disk **disks);
251
252/* dmenu.c */
253extern void dmenuOpen(DMenu *menu, int *choice, int *scroll,
254 int *curr, int *max);
255

--- 12 unchanged lines hidden (view full) ---

268
269/* termcap.c */
270extern int set_termcap(void);
271
272/* msg.c */
273extern void msgInfo(char *fmt, ...);
274extern void msgYap(char *fmt, ...);
275extern void msgWarn(char *fmt, ...);
276extern void msgDebug(char *fmt, ...);
270extern void msgError(char *fmt, ...);
271extern void msgFatal(char *fmt, ...);
272extern void msgConfirm(char *fmt, ...);
273extern void msgNotify(char *fmt, ...);
274extern int msgYesNo(char *fmt, ...);
275extern char *msgGetInput(char *buf, char *fmt, ...);
276
277/* media.c */

--- 48 unchanged lines hidden ---
277extern void msgError(char *fmt, ...);
278extern void msgFatal(char *fmt, ...);
279extern void msgConfirm(char *fmt, ...);
280extern void msgNotify(char *fmt, ...);
281extern int msgYesNo(char *fmt, ...);
282extern char *msgGetInput(char *buf, char *fmt, ...);
283
284/* media.c */

--- 48 unchanged lines hidden ---