include Carbon/Carbon.h in stead of universal headers, if appropriate.
This commit is contained in:
parent
8bb1dc1f8d
commit
9f66b4af6a
|
@ -22,7 +22,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
|
||||
******************************************************************/
|
||||
|
||||
#ifdef WITHOUT_FRAMEWORKS
|
||||
#include <Types.h>
|
||||
#include <Files.h>
|
||||
#else
|
||||
#include <Carbon/Carbon.h>
|
||||
#endif
|
||||
|
||||
extern OSErr FindApplicationFromCreator(OSType, FSSpecPtr);
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef WITHOUT_FRAMEWORKS
|
||||
#include <Memory.h>
|
||||
#include <Dialogs.h>
|
||||
#include <Menus.h>
|
||||
|
@ -14,6 +15,10 @@
|
|||
#include <Lists.h>
|
||||
#include <Movies.h>
|
||||
#include <Errors.h>
|
||||
#else
|
||||
#include <Carbon/Carbon.h>
|
||||
#include <QuickTime/QuickTime.h>
|
||||
#endif
|
||||
|
||||
#ifdef USE_TOOLBOX_OBJECT_GLUE
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue