/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (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
* 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 1997 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
/*
* University Copyright- Copyright (c) 1982, 1986, 1988
* The Regents of the University of California
* All Rights Reserved
*
* University Acknowledgment- Portions of this document are derived from
* software developed by the University of California, Berkeley, and its
* contributors.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*LINTLIBRARY*/
/* Clean things up before exiting. */
#include <stdlib.h>
#include "curses_inc.h"
#ifdef _VR2_COMPAT_CODE
char _endwin = 0;
#endif /* _VR2_COMPAT_CODE */
int
isendwin(void)
{
/*
* The test below must stay at TRUE because the value of 2
* has special meaning to wrefresh but does not mean that
* endwin has been called.
*/
return (TRUE);
else
return (FALSE);
}
int
endwin(void)
{
/* make sure we're in program mode */
/* If endwin is equal to 2 it means we just did a newscreen. */
(void) reset_prog_mode();
[cur_term->_cursorstate], 0);
}
if (exit_attribute_mode)
else
/*
* If there is no exit_attribute mode, then vidupdate
* could only possibly turn off one of the below three
* so that's all we ask it turn off.
*/
#ifdef _VR2_COMPAT_CODE
#endif /* _VR2_COMPAT_CODE */
}
/* See comment above why this test is explicitly against TRUE. */
return (ERR);
/* Flush out any output not output due to typeahead. */
if (_INPUTPENDING)
(void) force_doupdate();
/* Close things down. */
(void) ttimeout(-1);
/* don't bother turning off colors: it will be done later anyway */
(magic_cookie_glitch < 0) && (!ceol_standout_glitch))
_OFFINSERT();
#ifdef _VR2_COMPAT_CODE
#endif /* _VR2_COMPAT_CODE */
(void) reset_shell_mode();
/* restore colors and default color pair. SS: colors */
if (orig_colors)
if (orig_pair)
/* SS-mouse: free the mouse. */
if (get_mouse)
return (OK);
}
int
force_doupdate(void)
{
int ret;
/*
* This will cause _chkinput to return FALSE which will force wrefresh
* to think there is no input waiting and it will finish its refresh.
*/
return (ret);
}