19781SMoriah.Waterland@Sun.COM /* 29781SMoriah.Waterland@Sun.COM * CDDL HEADER START 39781SMoriah.Waterland@Sun.COM * 49781SMoriah.Waterland@Sun.COM * The contents of this file are subject to the terms of the 59781SMoriah.Waterland@Sun.COM * Common Development and Distribution License (the "License"). 69781SMoriah.Waterland@Sun.COM * You may not use this file except in compliance with the License. 79781SMoriah.Waterland@Sun.COM * 89781SMoriah.Waterland@Sun.COM * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 99781SMoriah.Waterland@Sun.COM * or http://www.opensolaris.org/os/licensing. 109781SMoriah.Waterland@Sun.COM * See the License for the specific language governing permissions 119781SMoriah.Waterland@Sun.COM * and limitations under the License. 129781SMoriah.Waterland@Sun.COM * 139781SMoriah.Waterland@Sun.COM * When distributing Covered Code, include this CDDL HEADER in each 149781SMoriah.Waterland@Sun.COM * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 159781SMoriah.Waterland@Sun.COM * If applicable, add the following below this CDDL HEADER, with the 169781SMoriah.Waterland@Sun.COM * fields enclosed by brackets "[]" replaced with your own identifying 179781SMoriah.Waterland@Sun.COM * information: Portions Copyright [yyyy] [name of copyright owner] 189781SMoriah.Waterland@Sun.COM * 199781SMoriah.Waterland@Sun.COM * CDDL HEADER END 209781SMoriah.Waterland@Sun.COM */ 219781SMoriah.Waterland@Sun.COM 229781SMoriah.Waterland@Sun.COM /* 23*9869SCasper.Dik@Sun.COM * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 249781SMoriah.Waterland@Sun.COM * Use is subject to license terms. 259781SMoriah.Waterland@Sun.COM */ 269781SMoriah.Waterland@Sun.COM 279781SMoriah.Waterland@Sun.COM #ifndef _INSTALLF_H 289781SMoriah.Waterland@Sun.COM #define _INSTALLF_H 299781SMoriah.Waterland@Sun.COM 309781SMoriah.Waterland@Sun.COM 319781SMoriah.Waterland@Sun.COM /* 329781SMoriah.Waterland@Sun.COM * Block comment that describes the contents of this file. 339781SMoriah.Waterland@Sun.COM */ 349781SMoriah.Waterland@Sun.COM 359781SMoriah.Waterland@Sun.COM #ifdef __cplusplus 369781SMoriah.Waterland@Sun.COM extern "C" { 379781SMoriah.Waterland@Sun.COM #endif 389781SMoriah.Waterland@Sun.COM 399781SMoriah.Waterland@Sun.COM #include <cfext.h> 409781SMoriah.Waterland@Sun.COM 419781SMoriah.Waterland@Sun.COM extern struct cfextra **extlist; 429781SMoriah.Waterland@Sun.COM extern int eptnum; 439781SMoriah.Waterland@Sun.COM extern int warnflag; 449781SMoriah.Waterland@Sun.COM extern char *classname; 459781SMoriah.Waterland@Sun.COM 469781SMoriah.Waterland@Sun.COM extern int cfentcmp(const void *, const void *); 479781SMoriah.Waterland@Sun.COM extern void quit(int); 489781SMoriah.Waterland@Sun.COM extern void usage(void); 499781SMoriah.Waterland@Sun.COM extern void removef(int, char *[]); 509781SMoriah.Waterland@Sun.COM extern int installf(int, char *[]); 51*9869SCasper.Dik@Sun.COM extern int dofinal(PKGserver, VFP_T *, int, char *, char *); 529781SMoriah.Waterland@Sun.COM 539781SMoriah.Waterland@Sun.COM #ifdef __cplusplus 549781SMoriah.Waterland@Sun.COM } 559781SMoriah.Waterland@Sun.COM #endif 569781SMoriah.Waterland@Sun.COM 579781SMoriah.Waterland@Sun.COM #endif /* _INSTALLF_H */ 58