Sunday, 7 April 2013

C Program to Hide Mouse Pointer

Hey guys... here is awesome post for you all. Run the following C program.

#include<graphics.h>
#include<conio.h>
#include<dos.h>
int initmouse();
void showmouseptr();
void hidemouseptr();
union REGS i, o;
main()
{
int status, count = 1, gd = DETECT, gm;
initgraph(&gd,&gm,"C:\\TC\\BGI");
status = initmouse();
if ( status == 0 )
printf("Mouse support not available.\n");
else
{
showmouseptr();
while(count<=10)
{
getch();
count++;
if(count%2==0)
hidemouseptr();
else
showmouseptr();
}
}
getch();
return 0;
}
int initmouse()
{
i.x.ax = 0;
int86(0X33,&i,&o);
return ( o.x.ax );
}
void showmouseptr()
{
i.x.ax = 1;
int86(0X33,&i,&o);
}
void hidemouseptr()
{
i.x.ax = 2; // to hide mouse
int86(0X33,&i,&o);
}


Note: Restart your PC for visibility.

No comments:

Post a Comment

Comment for your queries

Powered by Blogger.