[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

ScreenUpdate

Syntax

 
#include <pc.h>

void  ScreenUpdate(void *buf);

Description

This function writes the contents of the buffer buf to the primary screen. The buffer should contain an exact replica of the video memory, including the characters and their attributes.

Return Value

None.

Portability

ANSI/ISO C No
POSIX No

Example

 
ScreenUpdate(saved_screen);