| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * Name: wx/osx/carbon/chkconf.h
- * Purpose: Compiler-specific configuration checking
- * Author: Julian Smart
- * Modified by:
- * Created: 01/02/97
- * Copyright: (c) Julian Smart
- * Licence: wxWindows licence
- */
- #ifndef _WX_OSX_CARBON_CHKCONF_H_
- #define _WX_OSX_CARBON_CHKCONF_H_
- /*
- * native (1) or emulated (0) toolbar
- * also support old notation wxMAC_USE_NATIVE_TOOLBAR
- */
- #ifdef wxMAC_USE_NATIVE_TOOLBAR
- #define wxOSX_USE_NATIVE_TOOLBAR wxMAC_USE_NATIVE_TOOLBAR
- #endif
- #ifndef wxOSX_USE_NATIVE_TOOLBAR
- #define wxOSX_USE_NATIVE_TOOLBAR 1
- #endif
- /*
- * text rendering system
- */
- #define wxOSX_USE_ATSU_TEXT 1
- /*
- * Audio System
- */
- #define wxOSX_USE_QUICKTIME 1
- #define wxOSX_USE_AUDIOTOOLBOX 0
- #endif
- /* _WX_OSX_CARBON_CHKCONF_H_ */
|