Path: chuka.playstation.co.uk!news From: "John Blackburne" Newsgroups: scee.yaroze.programming.codewarrior Subject: Re: CW Link Errors Date: Sat, 12 Jun 1999 18:02:48 +0000 Organization: PlayStation Net Yaroze (SCEE) Lines: 25 Message-ID: <7ju3r1$hn71@chuka.playstation.co.uk> References: <375CBA69.1AFDFFE5@icl.com> NNTP-Posting-Host: p-149-virgin12.tch.virgin.net Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Newsreader: Microsoft Outlook Express Macintosh Edition - 4.5 (0410) This happens whenever you use a routine which is not defined. Possible cause include: * With library functions not including the relevant libaries in the program. But as this is not a library function (at least I don't recgonise it) this seems unlikely. * for user defined functions not including their definition, i.e. the .c file they're defined in, in the project. * a spelling error so the name doesn't match exactly. Remember C identifiers must match exactly, including their case. I would suspect the last two possibilities. If it's your own function make sure you've included the file it's in in the project and that it' name is the same (letters and case) everywhere it' used. If it's someone elses code make sure you've included all the files of the project. John ---------- In article <375CBA69.1AFDFFE5@icl.com>, Westerfield Akinyele wrote: > Link Error: undefined: 'Initialise2DGraphics' > Referenced from 'main' in main.c > Could anyone tell me how to resolve this....