CelestialSphere.pan 704 B

123456789101112131415161718192021222324252627
  1. /*
  2. ============================================================================
  3. Name : CelestialSphere.pan
  4. Author : Den Grigorenko
  5. Copyright : Copyright (c) 2008 Den123
  6. Description : This file contains panic codes.
  7. ============================================================================
  8. */
  9. #ifndef __CELESTIALSPHERE_PAN__
  10. #define __CELESTIALSPHERE_PAN__
  11. /** CelestialSphere application panic codes */
  12. enum TCelestialSpherePanics
  13. {
  14. ECelestialSphereUi = 1
  15. // add further panics here
  16. };
  17. inline void Panic(TCelestialSpherePanics aReason)
  18. {
  19. _LIT(applicationName, "CelestialSphere");
  20. User::Panic(applicationName, aReason);
  21. }
  22. #endif // __CELESTIALSPHERE_PAN__