Linker Error

Anybody can explain what the error means and how to fix it?

[Linker Error] Unresolved external ‘TForm1::mouse(int, int, int, int)’ referenced from C:\JULY4\MAINFORM1.OBJ

The compiler is looking for a routine called TForm1::mouse.

Could be that you have not typed the correct name in your code for this routine.
or that this routine is in another file and you have not linked to it.

As for how to fix it, you need to find in your code where this routine is being called and you may make sure it is definded correctly in your program

Originally posted by Suf:
[b]Anybody can explain what the error means and how to fix it?

[Linker Error] Unresolved external ‘TForm1::mouse(int, int, int, int)’ referenced from C:\JULY4\MAINFORM1.OBJ[/b]

[This message has been edited by nexusone (edited 07-16-2002).]