'\" te .\" Copyright (c) 1990, 1995 by Mortice Kern Systems Inc. All Rights Reserved Portions Copyright (c) 1996, Sun Microsystems, Inc. All Rights Reserved .TH getwin 3XCURSES "5 Jun 2002" "SunOS 5.11" "X/Open Curses Library Functions" .SH NAME getwin, putwin \- read a window from, and write a window to, a file .SH SYNOPSIS .LP .nf \fBcc\fR [ \fIflag\fR... ] \fIfile\fR... \fB-I\fR /usr/xpg4/include \fB -L \fR /usr/xpg4/lib \e \fB -R \fR /usr/xpg4/lib \fB -lcurses \fR [ \fIlibrary\fR... ] \fBc89\fR [ \fIflag\fR... ] \fIfile\fR... \fB-lcurses\fR [ \fIlibrary\fR... ] #include \fBWINDOW *\fR\fBgetwin\fR(\fBFILE *\fR\fIfilep\fR); .fi .LP .nf \fBint\fR \fBputwin\fR(\fBWINDOW *\fR\fIwin\fR, \fBFILE *\fR\fIfilep\fR); .fi .SH DESCRIPTION .sp .LP The \fBgetwin()\fR function reads window-related data (written earlier by \fBputwin()\fR) from the \fBstdio\fR stream pointed to by \fIfilep\fR. It then creates and initializes a new window using that data. .sp .LP The \fBputwin()\fR function writes all the data associated with the window pointed to by \fIwin\fR to the \fBstdio\fR stream pointed to by \fIfilep\fR. The \fBgetwin()\fR function can later retrieve this data. .SH PARAMETERS .sp .ne 2 .mk .na \fB\fIfilep\fR\fR .ad .RS 9n .rt Is a pointer to a \fBstdio\fR stream. .RE .sp .ne 2 .mk .na \fB\fIwin\fR\fR .ad .RS 9n .rt Is a pointer to a window. .RE .SH RETURN VALUES .sp .LP On success, the \fBgetwin()\fR function returns a pointer to the new window created. Otherwise, it returns a null pointer. .sp .LP On success, the \fBputwin()\fR function returns \fBOK\fR. Otherwise, it returns \fBERR\fR. .SH ERRORS .sp .LP None. .SH ATTRIBUTES .sp .LP See \fBattributes\fR(5) for descriptions of the following attributes: .sp .sp .TS tab() box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPEATTRIBUTE VALUE _ Interface StabilityCommitted _ MT-LevelUnsafe _ StandardSee \fBstandards\fR(5). .TE .SH SEE ALSO .sp .LP \fBlibcurses\fR(3XCURSES), \fBscr_dump\fR(3XCURSES), \fBattributes\fR(5), \fBstandards\fR(5)