topo_file.h revision 7aec1d6e253b21f9e9b7ef68b4d81ab9859b51fe
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _TOPO_FILE_H
#define _TOPO_FILE_H
#pragma ident "%Z%%M% %I% %E% SMI"
#include <topo_parse.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* We support loading topology from a file. The topo_tree routines
* don't need to know anymore than to call topo_file_load() to try to
* load the topology initially, and topo_file_unload() to clean up.
*/
typedef struct topo_file {
/*
* Currently we directly parse xml into topology nodes. The
* tf_info_t is created and used by the xml parsing routines.
*/
tf_info_t *tf_fileinfo;
/*
* Module on whose behalf the enumeration-from-file is occuring.
*/
topo_mod_t *tf_mod;
} topo_file_t;
#ifdef __cplusplus
}
#endif
#endif /* _TOPO_FILE_H */