S60 5th Edition SDK
Example Applications Guide

helloworldbasic.pan

00001 /*
00002 * ==============================================================================
00003 *  Name        : helloworldbasic.pan
00004 *  Part of     : Helloworldbasic
00005 *  Interface   : 
00006 *  Description : 
00007 *  Version     : 
00008 *
00009 *  Copyright (c) 2005-2006 Nokia Corporation.
00010 *  This material, including documentation and any related 
00011 *  computer programs, is protected by copyright controlled by 
00012 *  Nokia Corporation.
00013 * ==============================================================================
00014 */
00015 
00016 #ifndef __HELLOWORLDBASIC_PAN__
00017 #define __HELLOWORLDBASIC_PAN__
00018 
00019 /** HelloWorldBasic application panic codes */
00020 enum THelloWorldBasicPanics
00021     {
00022     EHelloWorldBasicUi = 1
00023     // add further panics here
00024     };
00025 
00026 inline void Panic(THelloWorldBasicPanics aReason)
00027     {
00028     _LIT(applicationName,"HelloWorldBasic");
00029     User::Panic(applicationName, aReason);
00030     }
00031 
00032 #endif // __HELLOWORLDBASIC_PAN__

© Nokia 2009

Back to top