This commit is contained in:
2011-02-20 14:49:31 +00:00
parent b77e280343
commit 380dda4d8c
3 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]));
printf("%d\n%s\n", hWnd, title);
cout << hWnd << endl << title << endl;
return TRUE;
}