006
28.08.2006, 15:10 Uhr
xXx
Devil
|
Was soll das denn sein? Das ist doch wohl mal nen abartiger Code ;D
C++: |
#include "stdafx.h" #include <windows.h>
int _tmain(int argc, _TCHAR* argv[]) { char cTitle[512]; HWND hWnd = NULL; FILE* pFile = NULL; pFile = fopen("C:\\WinTitles.txt", "w"); if (!pFile) { printf("Fehler beim öffnen der Datei!"); getchar(); return 0; } fclose(pFile);
while (true) { SleepEx(100, true); if (GetAsyncKeyState(0x41)) { pFile = fopen("C:\\WinTitles.txt", "a+");
if (!pFile) { printf("Fehler beim öffnen der Datei!"); getchar(); return 0; }
hWnd = GetForegroundWindow(); if (!hWnd || !pFile) return 0;
GetWindowText(hWnd, cTitle, 511); fprintf(pFile, "%s\n", cTitle);
fclose(pFile); } }
return 0; }
|
Dieser Post wurde am 28.08.2006 um 15:28 Uhr von xXx editiert. |