Excuse me, I'm somewhat new to programming, and I have a question about this paragraph in the Window - Opening a Window tutorial:
Under Windows operating systems, you may have created a "Windows Application" project, especially if don't want the console to show up. In such case, to avoid replacing main by WinMain, you can link with SFML_Main static library and keep a standard and portable main entry point.
These are my 2 questions:
1. What is a static library, and do I link it like any other lib file?
2. What functions should I include: SFML_Main, WinMain, main, or a combination?