zzzzz
zzzzz

Reputation: 1239

Core audio.h not found in my project?

I have added the CoreAudio framework using the link binary with libraries. However, when I compile it says "CoreAudio/CoreAudio.h" not found. Please help me

Upvotes: 2

Views: 3593

Answers (2)

V-Xtreme
V-Xtreme

Reputation: 7333

Actually in iOS only CoreAudioTypes.h header is available under CoreAudio.framwork

In OSx addition to this ,you can have AudioDriverPlugin.h, AudioHardware.h, AudioHardwarePlugin.h, CoreAudio.h and HostTime.h as a extra header file . I am not sure what is you requirement . But have look at this link.

Upvotes: 2

ScarletWitch
ScarletWitch

Reputation: 532

You might try adding

#import<CoreAudio/CoreAudioTypes.h>

Upvotes: 4

Related Questions