Skip to content

Commit 5319130

Browse files
committed
Merged PR 21116: Add syntax blocks to webauthn structs with ifdef issues
Add syntax blocks to webauthn structs with ifdef issues. Waiting for [issue](https://dev.azure.com/ceapex/Engineering/_workitems/edit/952067) to be addressed.
1 parent 549c6ef commit 5319130

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

sdk-api-src/content/webauthn/ns-webauthn-webauthn_credential_details_list.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
UID: NS:webauthn._WEBAUTHN_CREDENTIAL_DETAILS_LIST
33
tech.root: webauthn
44
title: WEBAUTHN_CREDENTIAL_DETAILS_LIST
5-
ms.date: 07/19/2022
5+
ms.date: 03/08/2024
66
targetos: Windows
77
description: The list of credentials.
88
prerelease: false
@@ -46,7 +46,16 @@ helpviewer_keywords:
4646

4747
## -description
4848

49-
The list of credentials.
49+
The list of credential details.
50+
51+
## -syntax
52+
53+
```cpp
54+
typedef struct _WEBAUTHN_CREDENTIAL_DETAILS_LIST {
55+
DWORD cCredentialDetails;
56+
PWEBAUTHN_CREDENTIAL_DETAILS *ppCredentialDetails;
57+
} WEBAUTHN_CREDENTIAL_DETAILS_LIST, *PWEBAUTHN_CREDENTIAL_DETAILS_LIST;
58+
```
5059
5160
## -struct-fields
5261

sdk-api-src/content/webauthn/ns-webauthn-webauthn_credential_list.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
UID: NS:webauthn._WEBAUTHN_CREDENTIAL_LIST
33
tech.root: webauthn
44
title: WEBAUTHN_CREDENTIAL_LIST
5-
ms.date: 07/19/2022
5+
ms.date: 03/08/2024
66
targetos: Windows
77
description: The list of credentials that the user has registered with the authenticator.
88
prerelease: false
@@ -48,11 +48,20 @@ helpviewer_keywords:
4848

4949
The list of credentials that the user has registered with the authenticator.
5050

51+
## -syntax
52+
53+
```cpp
54+
typedef struct _WEBAUTHN_CREDENTIAL_LIST {
55+
DWORD cCredentials;
56+
PWEBAUTHN_CREDENTIAL_EX *ppCredentials;
57+
} WEBAUTHN_CREDENTIAL_LIST, *PWEBAUTHN_CREDENTIAL_LIST;
58+
```
59+
5160
## -struct-fields
5261
5362
### -field cCredentials
5463
55-
The size of **ppCredentials**.
64+
The size of *ppCredentials*.
5665
5766
### -field ppCredentials
5867

0 commit comments

Comments
 (0)