Re: [Flightgear-devel] Visual Studio 2005

2006-01-24 Thread Drew
If I may elaborate on this problem, most of the string handling routines (strcpy, strcat, sprintf...etc.) have a more 'managed' alternative that Microsoft encourages programmers to use. These have the '_s' after them (strcpy_s, strcat_s, sprintf_s), and contain an additional argument that

Re: [Flightgear-devel] Visual Studio 2005

2006-01-24 Thread Andy Ross
Drew wrote: If I may elaborate on this problem, most of the string handling routines (strcpy, strcat, sprintf...etc.) have a more 'managed' alternative that Microsoft encourages programmers to use. These have the '_s' after them (strcpy_s, strcat_s, sprintf_s), and contain an additional

[Flightgear-devel] Visual Studio 2005

2006-01-23 Thread Vance Souders
Microsoft has made major changes to the standard C++ and C runtime libraries under Visual Studio 2005. When compiling Flightgear 0.9.9 under VS 2005, you get about 2500 deprecated function warnings because of these changes. So, to build FG under VS 05 with zero errors and zero warnings is

RE: [Flightgear-devel] Visual Studio 2005

2006-01-23 Thread Jon S. Berndt
et'Subject: [Flightgear-devel] Visual Studio 2005 Microsoft has made major changes to the standard C++ and C runtime libraries under Visual Studio 2005. When compiling Flightgear 0.9.9 under VS 2005, you get about 2500 deprecated function warnings because of these changes. So, to build F

Re: [Flightgear-devel] Visual Studio 2005

2006-01-23 Thread Frederic Bouvier
Quoting Vance Souders : Microsoft has made major changes to the standard C++ and C runtime libraries under Visual Studio 2005. When compiling Flightgear 0.9.9 under VS 2005, you get about 2500 deprecated function warnings because of these changes. So, to build FG under VS 05 with zero errors

Re: [Flightgear-devel] Visual Studio 2005

2006-01-23 Thread Andy Ross
Vance Souders wrote: Microsoft has made major changes to the standard C++ and C runtime libraries under Visual Studio 2005. When compiling Flightgear 0.9.9 under VS 2005, you get about 2500 deprecated function warnings because of these changes. So, to build FG under VS 05 with zero errors

Re: [Flightgear-devel] Visual Studio 2005

2006-01-23 Thread Andy Ross
Frederic Bouvier wrote: It says that strcpy ( for instance ) is not secure and one should use strcpy_s that is the secured version. Maybe I missed something, but I don't thing strcpy_s is available outside the MS world. They couldn't just implement strncpy ... ? Still, that's a good example

Re: [Flightgear-devel] Visual Studio 2005

2006-01-23 Thread Christian Mayer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andy Ross schrieb: Frederic Bouvier wrote: It says that strcpy ( for instance ) is not secure and one should use strcpy_s that is the secured version. Maybe I missed something, but I don't thing strcpy_s is available outside the MS world. They