G
Guest
Hi,
I've got an eval version of the above product and am trying to build regular C++ applications. I am not sure if I am doing things correctly though.I would like to build regular C++ apps that will be portable. Therefore I don't want to use features like precompiled headers, windows specific features etc. When I create a new windows console app however, I see things like;
int _tmain(int argc, _TCHAR* argv[])
defined as the entry point. I would rather this be the regular C++
int main(int argc, char* argv[])
i.e. I would like to be able to build c++ apps the same way I did witht he old visual studio product. Am I correct in thinking I can do this with visual studio.net or do I need to download/install another product?
thanks for any help.
cheers
Graham
I've got an eval version of the above product and am trying to build regular C++ applications. I am not sure if I am doing things correctly though.I would like to build regular C++ apps that will be portable. Therefore I don't want to use features like precompiled headers, windows specific features etc. When I create a new windows console app however, I see things like;
int _tmain(int argc, _TCHAR* argv[])
defined as the entry point. I would rather this be the regular C++
int main(int argc, char* argv[])
i.e. I would like to be able to build c++ apps the same way I did witht he old visual studio product. Am I correct in thinking I can do this with visual studio.net or do I need to download/install another product?
thanks for any help.
cheers
Graham