Я знаю, что это возможно с Symbian C ++
как следующий код
void GetProcessListL(void)
{
TFullName res;
TFindProcess find;
while(find.Next(res) == KErrNone)
{
RProcess ph;
ph.Open(find);
// here you can use
// functions of the RProcess
// to get more information
// of the selected process.
// res will have the process name..
ph.Close();
}
}
Однако есть ли способ сделать это, используя только Qt?
Поскольку Symbian C ++ явно устарел, даже Nokia больше не рекомендует его использовать.
спасибо,