while (Process32Next(snap, process) != FALSE) { if (process->szExeFile == name) { return process; } } cout << "No process with this name found"; returnNULL;
Sicher, entweder Du änderst die Projekteinstellungen, wobei das "Wie" von Deiner Entwicklungsumgebung abhängt oder erzwingst die Verwendung von ANSI-Strings indem Du PROCESSENTRY32A, Process32NextA usw. verwendest.