config.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /**************************************************************************
  2. * TTPCom Software Copyright (c) 1997-2005 TTPCom Ltd
  3. * Licensed to TTP_CLIENT_NAME
  4. **************************************************************************
  5. * $Id: //central/releases/simcom/branch_release_16_0_4_B_simcom/tplgsm/kiinc/config.h#1 $
  6. * $Revision: #1 $
  7. * $DateTime: 2006/11/27 07:18:36 $
  8. **************************************************************************
  9. * File Description : Global configuration parameters
  10. **************************************************************************/
  11. #if !defined (CONFIG_H)
  12. #define CONFIG_H
  13. /****************************************************************************
  14. * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
  15. *
  16. * TTPCom do not add new items to this file unless they are system wide
  17. * and non-Application specific. They should be nothing to do with GSM,
  18. * GPRS, 3G, Bluetooth or any other application.
  19. *
  20. * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
  21. ***************************************************************************/
  22. /****************************************************************************
  23. * Definitions
  24. ****************************************************************************/
  25. /*
  26. ** Mechanism for conditional compiling code dependant on PC/Target
  27. ** environment. Default is on target.
  28. */
  29. /* Detect Borland PC compiler */
  30. #if !defined (ON_PC) && defined (__WIN32__)
  31. # define ON_PC
  32. #endif
  33. /* Detect Microsoft PC compiler */
  34. #if !defined (ON_PC) && defined (WIN32)
  35. //# define ON_PC
  36. #endif
  37. #endif
  38. /* END OF FILE */