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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. #define HAVE_STDLIB_H
  21. #undef NEED_BSD_STRINGS
  22. #undef NEED_SYS_TYPES_H
  23. #undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
  24. #undef NEED_SHORT_EXTERNAL_NAMES
  25. #undef INCOMPLETE_TYPES_BROKEN
  26. /* Define "boolean" as unsigned char, not int, per Windows custom */
  27. #ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
  28. typedef unsigned char boolean;
  29. #endif
  30. #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
  31. #ifdef JPEG_INTERNALS
  32. #undef RIGHT_SHIFT_IS_UNSIGNED
  33. #endif /* JPEG_INTERNALS */
  34. #ifdef JPEG_CJPEG_DJPEG
  35. #define BMP_SUPPORTED /* BMP image file format */
  36. #define GIF_SUPPORTED /* GIF image file format */
  37. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  38. #undef RLE_SUPPORTED /* Utah RLE image file format */
  39. #define TARGA_SUPPORTED /* Targa image file format */
  40. #define TWO_FILE_COMMANDLINE /* optional */
  41. #define USE_SETMODE /* Microsoft has setmode() */
  42. #undef NEED_SIGNAL_CATCHER
  43. #undef DONT_USE_B_MODE
  44. #undef PROGRESS_REPORT /* optional */
  45. #endif /* JPEG_CJPEG_DJPEG */