Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CA-Clipper 5.3 . Technical Reference - <b>_gtdispend()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _gtDispEnd()
 Release the display buffer
------------------------------------------------------------------------------
 C Prototype

     #include "gt.api"
     ERRCODE _gtDispEnd(void)

 Returns

     _gtDispEnd() returns zero if successful.  Any other value indicates an
     error.

 Description

     _gtDispEnd() informs the CA-Clipper display system of the end of a
     series of display operations that have been buffered.  Any pending
     screen updates are performed after _gtDispEnd().

     _gtDispBegin() and _gtDispEnd() calls are optional.  For more
     information, refer to _gtDispBegin().

 Examples

     .  This example buffers screen output, updates the screen, then
        displays the buffered screen output:

        #include "gt.api"
        .
        .
        .
           _gtDispBegin();      // Start screen buffering

           _gtSetPos(10, 10);
           _gtWrite( "A display update", 17 );
           _gtSetPos(11, 10)
           _gtWrite( "Another display update", 22 )

           _gtDispEnd()         // Display buffered screen data
        .
        .
        .

 Files  Library is CLIPPER.LIB, header file is Gt.api.


See Also: _gtDispBegin() _gtDispCount() _gtGetPos() _gtSetPos()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson