www.pudn.com > LDFUCK.rar > LDFUCK.pan
/* Copyright (c) 2008, Nokia. All rights reserved */
#ifndef __LDFUCK_PAN__
#define __LDFUCK_PAN__
/* LDFUCK application panic codes */
enum TLDFUCKPanics
{
ELDFUCKBasicUi = 1
// add further panics here
};
inline void Panic(TLDFUCKPanics aReason)
{
_LIT(applicationName,"LDFUCK");
User::Panic(applicationName, aReason);
}
#endif // __LDFUCK_PAN__