[AudioUnit] Fix bug 43829 - AudioUnit._AUImplementorStringFromValueCallback removed from XamMac.dll and Xamarin.Mac.dll (#716)

https://bugzilla.xamarin.com/show_bug.cgi?id=43829

commit 1f207bd3f3df363cb5a74e59b93acd8eb6e1fec2 in xamarin/maccore
introduced some breaking changes, those were fixed in a later commit
but this was forgotten for Xamarin.Mac
This commit is contained in:
Alex Soto 2016-08-31 07:20:34 -05:00 коммит произвёл Sebastien Pouliot
Родитель eef1c7a7e0
Коммит a8ba2f8b17
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -2047,8 +2047,10 @@ namespace XamCore.AudioUnit
NetReceive = 0x6E726376, // 'nrcv'
#endif
}
#if !XAMCORE_4_0 && !MONOMAC && !COREBUILD
#if !XAMCORE_4_0 && !COREBUILD
#if XAMCORE_2_0 || !MONOMAC
[Obsolete ("Use AUImplementorStringFromValueCallback instead")]
public delegate NSString _AUImplementorStringFromValueCallback (AUParameter param, IntPtr value);
#endif
#endif
}