Skip to content

Commit f77c4bd

Browse files
committed
Merged main into live
2 parents a440ea4 + 999453f commit f77c4bd

File tree

64 files changed

+169
-111
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+169
-111
lines changed

docs/debugger/debug-interface-access/idiasymbol-get-customcallingconvention.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag that specifies whether the function has a custom calling convention."
2+
description: Retrieves a flag that specifies whether the function has a custom calling convention.
33
title: "IDiaSymbol::get_customCallingConvention"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,6 +12,7 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_customCallingConvention
1617

1718
Retrieves a flag that specifies whether the function has a custom calling convention.

docs/debugger/debug-interface-access/idiasymbol-get-databytes.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the data bytes of an OEM symbol."
2+
description: Retrieves the data bytes of an OEM symbol.
33
title: "IDiaSymbol::get_dataBytes"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_dataBytes
1617

1718
Retrieves the data bytes of an OEM symbol.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_dataBytes ( 
23+
HRESULT get_dataBytes (
2324
DWORD cbData,
2425
DWORD* pcbData,
2526
BYTE data[]

docs/debugger/debug-interface-access/idiasymbol-get-dataexport.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag indicating whether this export is DATA."
2+
description: Retrieves a flag indicating whether this export is DATA.
33
title: "IDiaSymbol::get_dataExport"
44
ms.date: "07/09/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_dataExport
1617

1718
Retrieves a flag indicating whether this export is `DATA`.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_privateExport ( 
23+
HRESULT get_privateExport (
2324
BOOL* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-datakind.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the variable classification of a data symbol."
2+
description: Retrieves the variable classification of a data symbol.
33
title: "IDiaSymbol::get_dataKind"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_dataKind
1617

1718
Retrieves the variable classification of a data symbol.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_dataKind ( 
23+
HRESULT get_dataKind (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-editandcontinueenabled.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag indicating whether the module was compiled with the /Z7, /Zi, /ZI (Debug Information Format)) compiler switch."
2+
description: Retrieves a flag indicating whether the module was compiled with the /Z7, /Zi, /ZI (Debug Information Format)) compiler switch.
33
title: "IDiaSymbol::get_editAndContinueEnabled"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_editAndContinueEnabled
1617

1718
Retrieves a flag indicating whether the module was compiled with the [/Z7, /Zi, /ZI (Debug Information Format)](/cpp/build/reference/z7-zi-zi-debug-information-format) compiler switch.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_editAndContinueEnabled ( 
23+
HRESULT get_editAndContinueEnabled (
2324
BOOL* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandleraddressoffset.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the section offset of the exception handler of this function."
2+
description: Retrieves the section offset of the exception handler of this function.
33
title: "IDiaSymbol::get_exceptionHandlerAddressOffset"
44
ms.date: "07/11/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exceptionHandlerAddressOffset
1617

1718
Retrieves the section offset of the exception handler of this function.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_exceptionHandlerAddressOffset ( 
23+
HRESULT get_exceptionHandlerAddressOffset (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandleraddresssection.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the section number of the exception handler of this function."
2+
description: Retrieves the section number of the exception handler of this function.
33
title: "IDiaSymbol::get_exceptionHandlerAddressSection"
44
ms.date: "07/11/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exceptionHandlerAddressSection
1617

1718
Retrieves the section number of the exception handler of this function.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_exceptionHandlerAddressSection ( 
23+
HRESULT get_exceptionHandlerAddressSection (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandlerrelativevirtualaddress.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the relative virtual address (RVA) of the exception handler of this function."
2+
description: Retrieves the relative virtual address (RVA) of the exception handler of this function.
33
title: "IDiaSymbol::get_exceptionHandlerRelativeVirtualAddress"
44
ms.date: "07/11/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exceptionHandlerRelativeVirtualAddress
1617

1718
Retrieves the relative virtual address (RVA) of the exception handler of this function.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_exceptionHandlerRelativeVirtualAddress ( 
23+
HRESULT get_exceptionHandlerRelativeVirtualAddress (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandlervirtualaddress.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the virtual address of the exception handler of this function."
2+
description: Retrieves the virtual address of the exception handler of this function.
33
title: "IDiaSymbol::get_exceptionHandlerVirtualAddress"
44
ms.date: "07/11/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exceptionHandlerVirtualAddress
1617

1718
Retrieves the virtual address of the exception handler of this function.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_exceptionHandlerVirtualAddress ( 
23+
HRESULT get_exceptionHandlerVirtualAddress (
2324
ULONGLONG* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exporthasexplicitlyassignedordinal.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag indicating whether this export has an explicitly assigned ordinal."
2+
description: Retrieves a flag indicating whether this export has an explicitly assigned ordinal.
33
title: "IDiaSymbol::get_exportHasExplicitlyAssignedOrdinal"
44
ms.date: "07/09/2024"
55
ms.topic: "reference"
@@ -12,6 +12,7 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exportHasExplicitlyAssignedOrdinal
1617

1718
Retrieves a flag indicating whether this export has an explicitly assigned ordinal.

0 commit comments

Comments
 (0)