info.h revision 383
1/* $Id: info.h,v 1.4 1993/09/04 05:06:40 jkh Exp $ */
2
3/*
4 * FreeBSD install - a package for the installation and maintainance
5 * of non-core utilities.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * Jordan K. Hubbard
17 * 23 August 1993
18 *
19 * Include and define various things wanted by the info command.
20 *
21 */
22
23#ifndef _INST_INFO_H_INCLUDE
24#define _INST_INFO_H_INCLUDE
25
26#define	SHOW_COMMENT	0x1
27#define SHOW_DESC	0x2
28#define SHOW_PLIST	0x4
29#define SHOW_INSTALL	0x8
30#define SHOW_DEINSTALL	0x10
31#define SHOW_REQUIRE	0x20
32#define SHOW_PREFIX	0x40
33#define SHOW_INDEX	0x80
34
35extern int Flags;
36extern Boolean AllInstalled;
37extern char *InfoPrefix;
38extern char *PlayPen;
39
40extern void	show_file(char *, char *);
41extern void	show_plist(char *, Package *, plist_t);
42
43#endif	/* _INST_INFO_H_INCLUDE */
44