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

touchoverlap Subroutine

Purpose

Marks the overlap of two windows as changed and makes arrangements for their refresh.

Library

Curses Library (libcurses.a)

Syntax

#include <curses.h>

touchoverlap(Window1, Window2)
WINDOW *Window1, Window2;

Description

The touchoverlap subroutine marks the overlap of two windows as changed and makes arrangements for their refresh.

Parameters

Window1 Specifies the first window as changed.
Window2 Specifies the second window as changed.

Examples

To mark the overlap of the two user-defined windows my_window and my_new_window as changed, enter:

touchoverlap(my_window, my_new_window);

Implementation Specifics

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

Related Information

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 Windows with Curses in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.


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