chkconf.h 791 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Name: wx/osx/carbon/chkconf.h
  3. * Purpose: Compiler-specific configuration checking
  4. * Author: Julian Smart
  5. * Modified by:
  6. * Created: 01/02/97
  7. * Copyright: (c) Julian Smart
  8. * Licence: wxWindows licence
  9. */
  10. #ifndef _WX_OSX_CARBON_CHKCONF_H_
  11. #define _WX_OSX_CARBON_CHKCONF_H_
  12. /*
  13. * native (1) or emulated (0) toolbar
  14. * also support old notation wxMAC_USE_NATIVE_TOOLBAR
  15. */
  16. #ifdef wxMAC_USE_NATIVE_TOOLBAR
  17. #define wxOSX_USE_NATIVE_TOOLBAR wxMAC_USE_NATIVE_TOOLBAR
  18. #endif
  19. #ifndef wxOSX_USE_NATIVE_TOOLBAR
  20. #define wxOSX_USE_NATIVE_TOOLBAR 1
  21. #endif
  22. /*
  23. * text rendering system
  24. */
  25. #define wxOSX_USE_ATSU_TEXT 1
  26. /*
  27. * Audio System
  28. */
  29. #define wxOSX_USE_QUICKTIME 1
  30. #define wxOSX_USE_AUDIOTOOLBOX 0
  31. #endif
  32. /* _WX_OSX_CARBON_CHKCONF_H_ */