Join Now
Quality Rating:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)
Expertise Level:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)

This page was last modified 16:41, 24 April 2008.

Lista dos processos em execução

From Forum Nokia Wiki

Obtenção da lista de processos em execução pelo sistema.

#include <e32base.h>
#include <e32cons.h>
 
TInt E32Main()
{
	CConsoleBase* gConsole = NULL;
	_LIT(KTituloConsole, "Aplicação console");
	_LIT(KApp, "Aplicação: %S \n");
	gConsole = Console::NewL(KTituloConsole, TSize(KConsFullScreen,KConsFullScreen)); 
	TFindProcess acharProcesso;
	TFullName nomeProcesso;
	while( acharProcesso.Next(nomeProcesso) == KErrNone )
	{
		gConsole->Printf(KApp, &nomeProcesso);
	}
	gConsole->Getch(); 
	
	return 1;
}
Related Discussions
Thread Thread Starter Forum Replies Last Post
makmake error billqu Symbian Tools & SDKs 2 2004-10-19 10:46
S60的SDK和VC集成,向导为什么总报错? Maxying Symbian 12 2003-09-08 13:52
ui api (i know its not truely a net prob)) maxxxis Mobile Java Networking & Messaging & Security 9 2003-07-13 10:45
Card Phone 1.0 a_mike Multimodecards 2 2002-09-30 14:38
N70 Theme Creation - Certificates??? EdenN70 Graphics & Video & Streaming 3 2007-04-24 11:46
 
Powered by MediaWiki