[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]

Technical Reference: Base Operating System and Extensions , 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 5L Version 5.1 General Programming Concepts: Writing and Debugging Programs.

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

Understanding Windows with Curses in AIX 5L Version 5.1 General Programming Concepts: Writing and Debugging Programs.


[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]