Go to the first, previous, next, last section, table of contents.


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

not ANSI, not POSIX

Example

ScreenUpdate(saved_screen);


Go to the first, previous, next, last section, table of contents.