Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
The Future of C++
Nov 03, 2012 at 8:14 PMAccording to Windows Phone API reference there are 11,000 Windows Runtime API members supported on Windows 8. The phone supports a subset of 2,800. The Phone also has 600 members not supported on Windows 8.
Search for "Windows Store Apps" "Windows Phone 8" "API is not implemented" to see some examples.
Windows Phone 8 and Windows 8 platform comparison shows the libraries supported in the Common native API: DirectX 11.1, XAudio2, MediaEngine, STL, CRT, and WinSock.
How to Leverage your Code across WP8 and Windows 8
Nov 03, 2012 at 6:45 PMXAML controls comparison between Windows Phone 8 and Windows 8 might help.
The Future of C++
Nov 02, 2012 at 2:19 PMReally a great session. I especially like:
Something things I don't like:
Some questions I have:
Building Metro style apps with XAML and C++
Jun 16, 2012 at 6:46 AMPerhaps this demo should be redone to avoid the "out of disk space" errors that kept disrupting the presentation.
Day 1 Keynote - Bjarne Stroustrup: C++11 Style
Feb 06, 2012 at 6:16 AMI would be interested in comments from Mr Stroustrup on these C++ compiler extensions by Microsoft:
Using Windows Runtime Components in Visual C++
Specifically,
1) The use of "Ref" classes
Person^ p = ref new Person("Clark Kent");
and their declaration.
2) The use of Platform Strings at the library interface
using namespace Platform;
std::wstring wstr1( L"Test" );
String^ str10 = ref new String( wstr1.c_str(), wstr1.length() );
GoingNative 3: The C++/CX Episode with Marian Luparu
Nov 19, 2011 at 8:51 PMWill there will be an compiler that produces ARM code that supports these extensions?
GoingNative 3: The C++/CX Episode with Marian Luparu
Nov 15, 2011 at 2:47 PMMy adoption decision depends on:
1) Better documentation on how to use the combination of XAML, WinRT and C++/CX.
2) Platform targets. My current belief is that the Windows phones will never allow C++, tablets will be Win 8, and WinRT won't apply to the installed base of Windows 7 computers.
Checking In: Stephan T. Lavavej - Inside STL (the person, not the library)
Oct 24, 2011 at 6:33 AMI found a way that should help me with the /VMG problem.
#pragma detect_mismatch( "name", "value"))
http://msdn.microsoft.com/en-us/library/ee956429.aspx
Checking In: Stephan T. Lavavej - Inside STL (the person, not the library)
Oct 14, 2011 at 8:18 AMUsing /vmg in a static library, but not using it in the application also creates a nasty runtime crash.
See http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/be4af7c2-db82-4976-9faf-df924b4d7339 for details.
So if you are already in the area of preventing incomprehensible runtime crashes by detecting problems due to mismatched compiler options in the linker, perhaps that error might be detected too.
GoingNative Live at BUILD: Herb Sutter, Joanna Mason, Tony Goodhew
Oct 02, 2011 at 1:12 PMI value the intent of the Windows runtime and the C++ extensions more than some yet to be implemented C++ standard features.
If VS11 did not support the WinRT reasonably for C++ by Build, that would have been a minor disaster.
One of the reasons why C took over was the crystal quality of the K&R's "The C programming Language". VS11's release needs a single document of that quality for C++ and WinRT.
See more comments…