www.pudn.com > BluetoothChat.rar > BluetoothChat.pan
/*
============================================================================
Name : BluetoothChat.pan
Author : Lion
Copyright : Your copyright notice
Description : This file contains panic codes.
============================================================================
*/
#ifndef __BLUETOOTHCHAT_PAN__
#define __BLUETOOTHCHAT_PAN__
/** BluetoothChat application panic codes */
enum TBluetoothChatPanics
{
EBluetoothChatUi = 1
// add further panics here
};
inline void Panic(TBluetoothChatPanics aReason)
{
_LIT(applicationName,"BluetoothChat");
User::Panic(applicationName, aReason);
}
#endif // __BLUETOOTHCHAT_PAN__