This commit is contained in:
2011-02-20 14:52:11 +00:00
parent 380dda4d8c
commit 854134a3c9
2 changed files with 1 additions and 1 deletions

View File

@@ -16,6 +16,6 @@ BOOL CALLBACK EnumProc(HWND hWnd, LPARAM lParam) {
TCHAR title[500];
ZeroMemory(title, sizeof(title));
GetWindowText(hWnd, title, sizeof(title) / sizeof(title[0]));
cout << hWnd << endl << title << endl;
printf("%d\n%s\n", hWnd, title);
return TRUE;
}