Page 1 of 1

?Entry Point Error?

Posted: February 23rd, 2012, 2:36 am
by XxSpeedDemonxX
For some strange reason I get an error on my projects suddenly(Might be something I forgot?).

Code: Select all

1>LINK : fatal error LNK1561: entry point must be defined
What exactly could be the problem?

Re: ?Entry Point Error?

Posted: February 23rd, 2012, 3:21 am
by chili
Can't say exactly without seeing the full source and the building settings, but if the linker can't find the entry point, that generally means it's having trouble finding your main() or WinMain() or whatever.

Re: ?Entry Point Error?

Posted: February 23rd, 2012, 3:30 am
by XxSpeedDemonxX
Yeah, that was the problem with my project. Thank you for the reply.