[ Previous | Next | Contents | Glossary | Home | Search ]
AIX Version 4.3 Base Operating System and Extensions Technical Reference, Volume 2

resetty, savetty Subroutine

Purpose

Saves/restores the terminal mode.

Library

Curses Library (libcurses.a)

Syntax

#include <curses.h>

int resetty(void);

int savetty(void):

Description

The resetty subroutine restores the program mode as of the most recent call to the savetty subroutine.

The savetty subroutine saves the state that would be put in place by a call to the reset_prog_mode subroutine.

Return Values

Upon successful completion, these subroutines return OK. Otherwise. they return ERR.

Examples

To restore the terminal to the state it was in at the last call to savetty, enter:

resetty();

Implementation Specifics

This subroutine is part of Base Operating System (BOS) Runtime.

Related Information

The def_prog_mode subroutine, endwin subroutine, savetty subroutine.

Curses Overview for Programming in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.

List of Curses Subroutines in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.

Understanding Terminals with Curses in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.


[ Previous | Next | Contents | Glossary | Home | Search ]