// Wymagana biblioteka: etel3rdparty.lib 
#include <Etel3rdParty.h>

CTelephony* tel = CTelephony::NewL();
CTelephony::TPhoneIdV1 identyfikator;
CTelephony::TPhoneIdV1Pckg identyfikatorPckg( identyfikator );

TRequestStatus status;
tel->GetPhoneId( status, identyfikatorPckg );
User::WaitForRequest( status );    // Trwae wstrzymanie wykonania wtku!!!

delete tel;    // Ta linia kodu si nie wykona...
