Audio plugin host https://kx.studio/carla
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.

jconfig.h 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
  2. /* see jconfig.doc for explanations */
  3. // disable all the warnings under MSVC
  4. #ifdef _MSC_VER
  5. #pragma warning (disable: 4996 4267 4100 4127 4702 4244)
  6. #endif
  7. #ifdef __BORLANDC__
  8. #pragma warn -8057
  9. #pragma warn -8019
  10. #pragma warn -8004
  11. #pragma warn -8008
  12. #endif
  13. #define HAVE_PROTOTYPES
  14. #define HAVE_UNSIGNED_CHAR
  15. #define HAVE_UNSIGNED_SHORT
  16. /* #define void char */
  17. /* #define const */
  18. #undef CHAR_IS_UNSIGNED
  19. #define HAVE_STDDEF_H
  20. #ifndef HAVE_STDLIB_H
  21. #define HAVE_STDLIB_H
  22. #endif
  23. #undef NEED_BSD_STRINGS
  24. #undef NEED_SYS_TYPES_H
  25. #undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
  26. #undef NEED_SHORT_EXTERNAL_NAMES
  27. #undef INCOMPLETE_TYPES_BROKEN
  28. /* Define "boolean" as unsigned char, not int, per Windows custom */
  29. #ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
  30. typedef unsigned char boolean;
  31. #endif
  32. #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
  33. #ifdef JPEG_INTERNALS
  34. #undef RIGHT_SHIFT_IS_UNSIGNED
  35. #endif /* JPEG_INTERNALS */
  36. #ifdef JPEG_CJPEG_DJPEG
  37. #define BMP_SUPPORTED /* BMP image file format */
  38. #define GIF_SUPPORTED /* GIF image file format */
  39. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  40. #undef RLE_SUPPORTED /* Utah RLE image file format */
  41. #define TARGA_SUPPORTED /* Targa image file format */
  42. #define TWO_FILE_COMMANDLINE /* optional */
  43. #define USE_SETMODE /* Microsoft has setmode() */
  44. #undef NEED_SIGNAL_CATCHER
  45. #undef DONT_USE_B_MODE
  46. #undef PROGRESS_REPORT /* optional */
  47. #endif /* JPEG_CJPEG_DJPEG */