Una de mis recientes creaciones

invierte completamente el mouse, osea, si mueves el mouse para arriba, este baja, y asi
Se puede, al que le gusten las maldades, hacer que se agregue al registro, para que siempre se active al iniciar la pc de alguna victima, y que se tenga q acostumbrar a usar el mouse alrevez xP
#include <windows.h>
int main(int argc, char* argv[])
{
tagPOINT asdasd, old_asdasd;
GetCursorPos(&asdasd);
old_asdasd = asdasd;
int mx, my;
mx = GetSystemMetrics(SM_CXSCREEN)-1;
my = GetSystemMetrics(SM_CYSCREEN)-1;
while(!GetAsyncKeyState(VK_F5))
{
GetCursorPos(&asdasd);
if (asdasd.x <= 0)
asdasd.x = -1;
if (asdasd.y <= 0)
asdasd.y = -1;
if (asdasd.x >= mx)
asdasd.x = mx + 1;
if (asdasd.y >= my)
asdasd.y = my + 1;
if (asdasd.x != old_asdasd.x || asdasd.y != old_asdasd.y)
SetCursorPos(asdasd.x - ((asdasd.x - old_asdasd.x) * 2), asdasd.y - ((asdasd.y - old_asdasd.y) * 2));
GetCursorPos(&old_asdasd);
_sleep(1);
}
}