Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Borland C++ 2.x ( with Turbo C ) - <b>_setcursortype() set the cursor shape</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _setcursortype()        Set the Cursor Shape

 #include   <conio.h>

 void _setcursortype(curs);
 int curs;  New cursor type.

        This function will set the cursor type depending on the setting
        of curs:

             _NOCURSOR        no cursor
             _SOLIDCURSOR     solid block cursor
             _NORMALCURSOR    underscore cursor

       Returns:     Nothing

   -------------------------------- Example ---------------------------------

        This example turns the cursor off:
  #include <conio.h>

 int main(void)

    _setcursortype(_NOCURSOR);
    return 0;





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