-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
SystemInformer.natvis
50 lines (42 loc) · 1.54 KB
/
SystemInformer.natvis
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved.
This file is part of System Informer.
Authors:
jxy-s 2024
-->
<!-- Debugger Visualizers -->
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<!-- PH_STRING -->
<Type Name="_PH_STRING">
<DisplayString>{Buffer,[Length / 2]su}</DisplayString>
<Expand>
<Item Name="[string]" ExcludeView="simple">Buffer,[Length / 2]su</Item>
<Item Name="[bytes]">Length</Item>
<Item Name="[length]">Length / 2</Item>
<Item Name="[real-length]">wcslen(Buffer)</Item>
</Expand>
</Type>
<!-- PH_STRINGREF -->
<Type Name="_PH_STRINGREF">
<DisplayString>{Buffer,[Length / 2]su}</DisplayString>
<Expand>
<Item Name="[string]" ExcludeView="simple">Buffer,[Length / 2]su</Item>
<Item Name="[bytes]">Length</Item>
<Item Name="[length]">Length / 2</Item>
<Item Name="[real-length]">wcslen(Buffer)</Item>
</Expand>
</Type>
<!-- PH_LIST -->
<Type Name="_PH_LIST">
<DisplayString>{{size={Count}}}</DisplayString>
<Expand>
<Item Name="[size]" ExcludeView="simple">Count</Item>
<Item Name="[capacity]" ExcludeView="simple">AllocatedCount</Item>
<ArrayItems>
<Size>Count</Size>
<ValuePointer>Items</ValuePointer>
</ArrayItems>
</Expand>
</Type>
</AutoVisualizer>