2 .\" Copyright (c) 2000, Sun Microsystems, Inc. All Rights Reserved.
3 .\" 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.
4 .\" 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.
5 .\" 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]
6 .TH PTREE_GET_FIRST_PROP 3PICLTREE "Mar 28, 2000"
8 ptree_get_first_prop, ptree_get_next_prop \- get a property handle of the node
12 \fBcc\fR [ \fIflag\fR... ] \fIfile\fR... \fB-lpicltree\fR [ \fIlibrary\fR... ]
15 \fBint\fR \fBptree_get_first_prop\fR(\fBpicl_nodehdl_t\fR \fInodeh\fR,
16 \fBpicl_prophdl_t *\fR\fIproph\fR);
21 \fBint\fR \fBptree_get_next_prop\fR(\fBpicl_prophdl_t\fR \fIproph\fR,
22 \fBpicl_prophdl_t *\fR\fInextproph\fR);
28 The \fBptree_get_first_prop()\fR function gets the handle of the first property
29 of the node specified by \fInodeh\fR and copies it into the location specified
33 The \fBptree_get_next_prop()\fR function gets the handle of the next property
34 after the one specified by \fIproph\fR from the list of properties of the node
35 and copies it into the location specified by \fInextproph\fR.
39 Upon successful completion, \fB0\fR is returned. On failure, a non-negative
40 integer is returned to indicate an error.
43 \fBPICL_STALEHANDLE\fR is returned if the handle is no longer valid. This
44 occurs if the PICL tree was refreshed or reinitialized.
47 \fBPICL_INVALIDHANDLE\fR is returned if the specified handle never existed.
52 \fB\fBPICL_NOTPROP\fR\fR
61 \fB\fBPICL_NOTNODE\fR\fR
70 \fB\fBPICL_ENDOFLIST\fR\fR
79 \fB\fBPICL_INVALIDHANDLE\fR\fR
88 \fB\fBPICL_STALEHANDLE\fR\fR
97 \fB\fBPICL_FAILURE\fR\fR
100 General system failure
106 See \fBattributes\fR(5) for descriptions of the following attributes:
114 ATTRIBUTE TYPE ATTRIBUTE VALUE
116 Interface Stability Evolving
124 \fBptree_get_prop_by_name\fR(3PICLTREE), \fBattributes\fR(5)