Re: UInt32 and ==
Re: UInt32 and ==
- Subject: Re: UInt32 and ==
- From: Jaeho Chang <email@hidden>
- Date: Wed, 10 Apr 2002 11:07:49 +0900
- (Boolean) isReadable
{
return( ( auParamInfo.flags &
kAudioUnitParameterFlag_IsReadable ) != 0 );
}
I tried this:
- (Boolean) isReadable
{
return( auParamInfo.flags &
kAudioUnitParameterFlag_IsReadable != 0 );
}
But this did not work. I forgot that != is done before &.
This made me think the problem was in internal
comparing mechanism...
Anyway... sorry and thanks to all.
Joe.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.