EPong.hrh 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (c) 2011 Nokia Corporation.
  3. */
  4. /*
  5. ============================================================================
  6. Name : EPong.hrh
  7. Author :
  8. Description : This file contains declarations for constants of EPong.
  9. The file can be included in C++ or resource file.
  10. ============================================================================
  11. */
  12. #ifndef __EPong_HRH__
  13. #define __EPong_HRH__
  14. // option defines
  15. #ifndef USE_OGG
  16. #define USE_OGG
  17. #endif
  18. #ifndef TRIAL_VERSION
  19. // comment out #define to build "full version", make sure to make sis package using epong_full.pkg
  20. #define TRIAL_VERSION
  21. #endif
  22. #ifndef USE_GOOM_MONITOR
  23. // to use GOOM API, copy goomapi directories to sdk epoc32 directory
  24. //#define USE_GOOM_MONITOR
  25. #endif
  26. // -------------------------------
  27. #ifdef TRIAL_VERSION
  28. #define _UID3 0xE003AF4F
  29. #else
  30. #define _UID3 0x2003AF4F
  31. #endif
  32. #ifndef IAP
  33. // define IAP only if TRIAL_VERSION is made.
  34. // Uncomment the following line to build IAP version.
  35. // Also, uncomment the corresponding lines in the pkg files.
  36. //#define IAP
  37. #endif
  38. #endif // __EPong_HRH__