🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

C++

Started by
0 comments, last by Sincipher 24 years, 2 months ago
Before i pick a project workspace in C++ do I need to know what kind of workspace is used for what? For example I was practicing with pointers, learning how they work. when i used the WIN32 API workspace it gave me unhandled external errors in Linking, but when I used the Win32 Console Application it did not give any errors and the test worked.
***"When I die, don't bury me, Just hook me up to my computer and I will live forever!"***
Advertisement
If you choose Win32 Console Appl., you are able to write a "normal" C/C++ program where execution starts with the main() function. With WIN32 API you need the int APIENTRY WinMain() instead of main() and you can''t work with standard C input/output functions (you''ve to create a window...).

Visit our homepage: www.rarebyte.de.st

GA
Visit our homepage: www.rarebyte.de.stGA

This topic is closed to new replies.

Advertisement