should I file this as a bug?
should I file this as a bug?
- Subject: should I file this as a bug?
- From: Jaime Magiera <email@hidden>
- Date: Fri, 2 Nov 2007 01:29:28 -0400
Hi,
In CAAudioUnit.h:189, I think they meant
MAC_OS_X_VERSION_MIN_REQUIRED, no?
#if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_4
// this is a run time check
// this API is only available on 10_5 systems
// on pre 10.5 systems this is weak linked - so the symbol
won't be designed
OSStatus result = badComponentSelector;
if (AudioUnitRemovePropertyListenerWithUserData != NULL) {
result = AudioUnitRemovePropertyListenerWithUserData(AU(),
inID,
inProc, inProcUserData);
}
#if !__LP64__
if (result) result = AudioUnitRemovePropertyListener (AU(), inID,
inProc);
#endif
return result;
#else
return AudioUnitRemovePropertyListener (AU(), inID, inProc);
#endif
Jaime
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Coreaudio-api mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden