shinnok Posted May 26, 2008 Report Posted May 26, 2008 Gasiti la adresa de mai jos o colectie de mici programele glumete...you know old school stuff :shock: Mie inca mi se pare funny o parte din ele.Mai ales cand sunt facute unor necunoscatori. :twisted: http://www.rjlsoftware.com/software/entertainment/Unul din cele mai antipatice: http://www.rjlsoftware.com/software/entertainment/dirty/ Quote
shinnok Posted May 26, 2008 Author Report Posted May 26, 2008 Cu ocazia asta mi-am adus aminte ca am scris si eu candva un cod pentru un maus dinasta nebun ...oooold times....#include <windows.h>intmain (void){ POINT *newp, *oldp; newp = new POINT; oldp = new POINT; FreeConsole (); GetCursorPos (oldp); for ( { GetCursorPos (newp); if (newp->x > oldp->x) SetCursorPos (newp->x - 3, newp->y); if (newp->x < oldp->x) SetCursorPos (newp->x + 3, newp->y); if (newp->y < oldp->y) SetCursorPos (newp->x, newp->y + 3); if (newp->y > oldp->y) SetCursorPos (newp->x, newp->y - 3); oldp->x = newp->x; oldp->y = newp->y; Sleep(10); }} compilati-l sub Visual Studio pentru ca nu l-am testat sub altceva Quote