git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75050 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			45 lines
		
	
	
		
			791 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			791 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * 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_ */
 | |
| 
 |