Re: Help porting from codewarrior?
Re: Help porting from codewarrior?
- Subject: Re: Help porting from codewarrior?
- From: Cameron Hayne <email@hidden>
- Date: Wed, 21 Sep 2005 14:17:56 -0400
On 21-Sep-05, at 1:32 PM, Bob Sabiston wrote:
These are due to some declarations like the following in the above
header file:
extern FILE *log_file;
extern Boolean logging;
Leaving aside the issue of where FILE & Boolean are defined, I point
out that these two lines are merely declarations of two global
variables. The "definition" of those two global variables must be in
one of your C or C++ files. (The "definition" of a variable is where
storage space for it is allocated, otherwise known as "where it
lives".) So you need to find where those variables live. If they
don't exist anywhere in your C or C++ files, then perhaps these
declarations are obsolete and can just be deleted.
--
Cameron Hayne
email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden