zrtp_config_symbian.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * libZRTP SDK library, implements the ZRTP secure VoIP protocol.
  3. * Copyright (c) 2006-2009 Philip R. Zimmermann. All rights reserved.
  4. * Contact: http://philzimmermann.com
  5. * For licensing and other legal details, see the file zrtp_legal.c.
  6. *
  7. * Viktor Krykun <v.krikun at zfoneproject.com>
  8. */
  9. #ifndef ZRTP_SYMB_CONFIG_H__
  10. #define ZRTP_SYMB_CONFIG_H__
  11. /*
  12. * Used to map system integer types to zrtp integer definitions.
  13. * Define to 1 if you have the <inttypes.h> header file.
  14. */
  15. #undef ZRTP_HAVE_INTTYPES_H
  16. /*
  17. * This header is needed for operations with binary file in deefault realization
  18. * of the secrets' cache. Can be eliminated if default cache isn't used.
  19. * Define to 1 if you have the <stdio.h> header file.
  20. */
  21. #ifndef ZRTP_HAVE_STDIO_H
  22. # define ZRTP_HAVE_STDIO_H 1
  23. #endif
  24. #ifndef ZRTP_HAVE_STDARG_H
  25. # define ZRTP_HAVE_STDARG_H 1
  26. #endif
  27. /*
  28. * Used by bnlib, but we don't need this on Symbian platform.
  29. */
  30. #ifndef NO_ASSERT_H
  31. # define NO_ASSERT_H 1
  32. #endif
  33. /*
  34. * Used by bnlib. We have stdlib in Symbian platform - set it to 1.
  35. */
  36. #ifndef NO_STDLIB_H
  37. # define NO_STDLIB_H 0
  38. #endif
  39. #ifndef ZRTP_HAVE_SYS_TIME_H
  40. # define ZRTP_HAVE_SYS_TIME_H 1
  41. #endif
  42. #define ZRTP_HAVE_INT64_T 0
  43. #define ZRTP_HAVE_INT32_T 0
  44. #define ZRTP_HAVE_INT16_T 0
  45. #define ZRTP_HAVE_INT8_T 0
  46. #define ZRTP_HAVE_UINT64_T 0
  47. #define ZRTP_HAVE_UINT32_T 0
  48. #define ZRTP_HAVE_UINT16_T 0
  49. #define ZRTP_HAVE_UINT8_T 0
  50. #define ZRTP_BYTE_ORDER ZBO_BIG_ENDIAN
  51. #define SIZEOF_UNSIGNED_LONG 4
  52. #define SIZEOF_UNSIGNED_LONG_LONG 8
  53. #define ZRTP_INLINE static __inline
  54. #endif /* ZRTP_WIN_CONFIG_H__ */