8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3curses / menu_item_userptr.3curses
blobcbb894a9a8f47976d4f66bbd5967d7563b834833
1 '\" te
2 .\" Copyright 1989 AT&T
3 .\" Portions Copyright (c) 1996, Sun Microsystems, Inc. All Rights Reserved.
4 .\" 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.
5 .\" 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.
6 .\" 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]
7 .TH MENU_ITEM_USERPTR 3CURSES "Dec 31, 1996"
8 .SH NAME
9 menu_item_userptr, set_item_userptr, item_userptr \- associate application data
10 with menus items
11 .SH SYNOPSIS
12 .LP
13 .nf
14 \fBcc\fR [ \fIflag\fR... ] \fIfile\fR... \fB-lmenu\fR \fB -lcurses \fR [ \fIlibrary\fR... ]
15 #include <menu.h>
17 \fBint\fR \fBset_item_userptr\fR(\fBITEM *\fR\fIitem\fR, \fBchar *\fR\fIuserptr\fR);
18 .fi
20 .LP
21 .nf
22 \fBchar *\fR\fBitem_userptr\fR(\fBITEM *\fR\fIitem\fR);
23 .fi
25 .SH DESCRIPTION
26 .sp
27 .LP
28 Every item has an associated user pointer that can be used to store relevant
29 information. \fBset_item_userptr()\fR sets the user pointer of \fIitem\fR.
30 \fBitem_userptr()\fR returns the user pointer of \fIitem\fR.
31 .SH RETURN VALUES
32 .sp
33 .LP
34 \fBitem_userptr()\fR returns \fBNULL\fR on error. \fBset_item_userptr()\fR
35 returns one of the following:
36 .sp
37 .ne 2
38 .na
39 \fBE_OK\fR
40 .ad
41 .RS 18n
42 The routine returned successfully.
43 .RE
45 .sp
46 .ne 2
47 .na
48 \fBE_SYSTEM_ERROR\fR
49 .ad
50 .RS 18n
51 System error.
52 .RE
54 .SH ATTRIBUTES
55 .sp
56 .LP
57 See \fBattributes\fR(5) for descriptions of the following attributes:
58 .sp
60 .sp
61 .TS
62 box;
63 c | c
64 l | l .
65 ATTRIBUTE TYPE  ATTRIBUTE VALUE
67 MT-Level        Unsafe
68 .TE
70 .SH SEE ALSO
71 .sp
72 .LP
73 \fBcurses\fR(3CURSES), \fBmenus\fR(3CURSES), \fBattributes\fR(5)
74 .SH NOTES
75 .sp
76 .LP
77 The header \fB<menu.h>\fR automatically includes the headers  \fB<eti.h>\fR and
78 \fB<curses.h>\fR\&.