Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ 3.0r4 - <b>disp_startstand</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
disp_startstand

Usage

   #include <disp.h>
   void disp_startstand(void);

Description

   Causes all characters printed after this call to be displayed in reverse
   video mode. The reverse video mode is turned off using the disp_endstand
   function call.


Example 

   #include <disp.h>
   #include <stdlib.h>

   int main()
   {
       disp_open();
       disp_move(0,0);
       disp_eeop();
       disp_printf("This is normal video\n");
       disp_startstand();
       disp_printf("This is after disp_startstand\n");
       disp_endstand();
       disp_printf("and this is after disp_endstand\n");
       disp_close();
       return EXIT_SUCCESS;
   }

See Also


   Display package, disp_endstand, disp_setattr



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