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.

112 lines
2.6KB

  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 carla_sleep(t) Sleep(t * 1000)
  39. # define carla_msleep(t) Sleep(t)
  40. # define carla_usleep(t) Sleep(t / 1000)
  41. # define carla_setenv(key, value) SetEnvironmentVariableA(key, value)
  42. #else
  43. # include <dlfcn.h>
  44. # include <unistd.h>
  45. # define carla_sleep(t) sleep(t)
  46. # define carla_msleep(t) usleep(t * 1000)
  47. # define carla_usleep(t) usleep(t)
  48. # define carla_setenv(key, value) setenv(key, value, 1)
  49. # ifndef __cdecl
  50. # define __cdecl
  51. # endif
  52. #endif
  53. // needed for qDebug/Warning/Critical sections (FIXME)
  54. #if __WORDSIZE == 64
  55. # define P_INT64 "%li"
  56. # define P_INTPTR "%li"
  57. # define P_UINTPTR "%llx"
  58. # define P_SIZE "%lu"
  59. #else
  60. # define P_INT64 "%lli"
  61. # define P_INTPTR "%i"
  62. # define P_UINTPTR "%x"
  63. # define P_SIZE "%u"
  64. #endif
  65. // set native binary type
  66. #if defined(Q_OS_UNIX)
  67. # if __LP64__
  68. # define BINARY_NATIVE BINARY_UNIX64
  69. # else
  70. # define BINARY_NATIVE BINARY_UNIX32
  71. # endif
  72. #elif defined(Q_OS_WIN)
  73. # ifdef Q_OS_WIN64
  74. # define BINARY_NATIVE BINARY_WIN64
  75. # else
  76. # define BINARY_NATIVE BINARY_WIN32
  77. # endif
  78. #else
  79. # warning Unknown binary type
  80. # define BINARY_NATIVE BINARY_OTHER
  81. #endif
  82. // export symbols if needed
  83. #ifdef BUILD_BRIDGE
  84. # define CARLA_EXPORT
  85. #else
  86. # if defined(Q_OS_WIN) && ! defined(__WINE__)
  87. # define CARLA_EXPORT extern "C" __declspec (dllexport)
  88. # else
  89. # define CARLA_EXPORT extern "C" __attribute__ ((visibility("default")))
  90. # endif
  91. #endif
  92. static inline
  93. const char* bool2str(bool yesno)
  94. {
  95. return yesno ? "true" : "false";
  96. }
  97. static inline
  98. void pass(void) {}
  99. #endif // CARLA_INCLUDES_H