* changing datatransfer from CFPasteboard to NSPasteboard API * factoring and cleaning up * Switching back naming * missed file * getting wxCFStringRef to be independent of system headers * add unichar include * using wxCFStringRef in header * moving to private headers, change method name * adapting to lesser content in cfstring.h * Removing malloc/free usage * use wxScopedArray throughout * using wxMemoryBuffer instead of char[] * fixing nonprecomp headers * missing forward decl in non-precomp builds
16 lines
323 B
C
16 lines
323 B
C
#ifndef _WX_PRIVATE_OSX_H_
|
|
#define _WX_PRIVATE_OSX_H_
|
|
|
|
#include "wx/osx/core/private.h"
|
|
#include "wx/osx/private/datatransfer.h"
|
|
|
|
#if wxOSX_USE_IPHONE
|
|
#include "wx/osx/iphone/private.h"
|
|
#elif wxOSX_USE_COCOA
|
|
#include "wx/osx/cocoa/private.h"
|
|
#elif wxUSE_GUI
|
|
#error "Must include wx/defs.h first"
|
|
#endif
|
|
|
|
#endif
|