Collection of tools useful for audio production
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
2.8KB

  1. /*
  2. * Carla common includes
  3. * Copyright (C) 2011-2012 Filipe Coelho <falktx@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the COPYING file
  16. */
  17. #ifndef CARLA_INCLUDES_H
  18. #define CARLA_INCLUDES_H
  19. #ifdef __WINE__
  20. # define __socklen_t_defined
  21. //# define __WINE_WINSOCK2__
  22. //# define HRESULT LONG
  23. # define Q_CORE_EXPORT
  24. # define Q_GUI_EXPORT
  25. # define QT_NO_STL
  26. #endif
  27. #include <QtCore/Qt>
  28. // TESTING - remove later
  29. #ifdef QTCREATOR_TEST
  30. #undef Q_COMPILER_INITIALIZER_LISTS
  31. #endif
  32. #ifndef Q_COMPILER_LAMBDA
  33. # define nullptr (0)
  34. #endif
  35. #ifdef Q_OS_WIN
  36. # include <winsock2.h>
  37. # include <windows.h>
  38. # define uintptr_t size_t // FIXME
  39. # define carla_sleep(t) Sleep(t * 1000)
  40. # define carla_msleep(t) Sleep(t)
  41. # define carla_usleep(t) Sleep(t / 1000)
  42. # define carla_setenv(key, value) SetEnvironmentVariableA(key, value)
  43. #else
  44. # include <dlfcn.h>
  45. # include <unistd.h>
  46. # define carla_sleep(t) sleep(t)
  47. # define carla_msleep(t) usleep(t * 1000)
  48. # define carla_usleep(t) usleep(t)
  49. # define carla_setenv(key, value) setenv(key, value, 1)
  50. # ifndef __cdecl
  51. # define __cdecl
  52. # endif
  53. #endif
  54. // needed for qDebug/Warning/Critical sections
  55. #if defined(Q_OS_WIN64) && ! defined(__WINE__)
  56. # define P_INTPTR "%I64i"
  57. # define P_UINTPTR "%I64x"
  58. # define P_SIZE "%I64u"
  59. #elif __WORDSIZE == 64
  60. # define P_INTPTR "%li"
  61. # define P_UINTPTR "%lx"
  62. # define P_SIZE "%lu"
  63. #else
  64. # define P_INTPTR "%i"
  65. # define P_UINTPTR "%x"
  66. # define P_SIZE "%u"
  67. #endif
  68. // set native binary type
  69. #if defined(Q_OS_HAIKU) || defined(Q_OS_UNIX)
  70. # ifdef __LP64__
  71. # define BINARY_NATIVE BINARY_POSIX64
  72. # else
  73. # define BINARY_NATIVE BINARY_POSIX32
  74. # endif
  75. #elif defined(Q_OS_WIN)
  76. # ifdef Q_OS_WIN64
  77. # define BINARY_NATIVE BINARY_WIN64
  78. # else
  79. # define BINARY_NATIVE BINARY_WIN32
  80. # endif
  81. #else
  82. # warning Unknown binary type
  83. # define BINARY_NATIVE BINARY_OTHER
  84. #endif
  85. // export symbols if needed
  86. #ifdef BUILD_BRIDGE
  87. # define CARLA_EXPORT extern "C"
  88. #else
  89. # if defined(Q_OS_WIN) && ! defined(__WINE__)
  90. # define CARLA_EXPORT extern "C" __declspec (dllexport)
  91. # else
  92. # define CARLA_EXPORT extern "C" __attribute__ ((visibility("default")))
  93. # endif
  94. #endif
  95. static inline
  96. const char* bool2str(bool yesno)
  97. {
  98. return yesno ? "true" : "false";
  99. }
  100. static inline
  101. void pass() {}
  102. #endif // CARLA_INCLUDES_H