Add a file with debug visualizers for MSVS 2013 and later.

For now this file contains just the visualizer for wxWindow which shows its
real (most derived) type as this is often the most useful thing you need to
know about the window.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@76705 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-06-15 00:30:10 +00:00
parent 9e34e483c7
commit a6eef301da

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file contains visualizers for Visual Studio 2013+ debugger.
It should be copied into the %USERPROFILE%\My Documents\Visual Studio 2013\Visualizers
directory (or the corresponding location for newer versions) in addition to
wxWidgets.natvis which defines visualizers that also work with MSVS 2012.
The new features in MSVS 2013 are described in details here:
http://blogs.msdn.com/b/vcblog/archive/2013/06/28/using-visual-studio-2013-to-write-maintainable-native-visualizations-natvis.aspx
-->
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="wxWindow">
<DisplayString>$(Type) HWND={m_hWnd,x}</DisplayString>
</Type>
</AutoVisualizer>