Re: Check Undefined Function Calls
Re: Check Undefined Function Calls
- Subject: Re: Check Undefined Function Calls
- From: Fritz Anderson <email@hidden>
- Date: Mon, 27 Jun 2005 14:35:37 -0500
On 27 Jun 2005, at 10:35 AM, Ian McGregor wrote:
Reading the developer documentation at http://developer.apple.com/
documentation/DeveloperTools/Conceptual/cross_development/
index.html#//apple_ref/doc/uid/10000163i
there is an example half way down the page which outlines a method
for checking for undefined function calls when cross developing. I
am confused by the example, should the first if statement not be:
if (HIAboutBox == NULL) ? Signifying its non existence in this
earlier version of OS X.
...
Code from developer page:
void MyAboutBox(void)
{
if(HIAboutBox != NULL)
{
// Lots of code to display an about box with earlier
technology.
}
else
{
HIAboutBox(NULL);
}
}
You are correct. Did you use the feedback box at the bottom of the
page? I'm using the feedback box at the bottom of the page...
-- F
_______________________________________________
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