Re:Check for Mac OS Version
Re:Check for Mac OS Version
- Subject: Re:Check for Mac OS Version
- From: Anish Kumar <email@hidden>
- Date: Thu, 31 Mar 2005 10:10:23 +0530
Probably this is what you were looking for....
+(Boolean)MacOSPantherOrBetter
{
UInt32 response;
return( Gestalt(gestaltSystemVersion,
(SInt32 *) &response) == noErr)
&& (response >= 0x01030 );
}
regards,
-Anish
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden