From 8d138a9b3988a8ae5ab45fe0396f3ee738e2c81b Mon Sep 17 00:00:00 2001 From: Ratin Gao Date: Sat, 11 Oct 2025 15:18:42 +0800 Subject: [PATCH 1/2] Update nf-winnt-uint32x32to64.md --- .../content/winnt/nf-winnt-uint32x32to64.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/sdk-api-src/content/winnt/nf-winnt-uint32x32to64.md b/sdk-api-src/content/winnt/nf-winnt-uint32x32to64.md index 1f38afde8e0..d663875e031 100644 --- a/sdk-api-src/content/winnt/nf-winnt-uint32x32to64.md +++ b/sdk-api-src/content/winnt/nf-winnt-uint32x32to64.md @@ -50,17 +50,17 @@ api_name: ## -syntax ```cpp -LONGLONG Int32x32To64( - [in] LONG a, - [in] LONG b +ULONGLONG UInt32x32To64( + [in] ULONG a, + [in] ULONG b ); ``` ## -returns -Type: **LONGLONG** +Type: **ULONGLONG** -The return value is the signed 64-bit integer result of the multiplication operation. +The return value is the unsigned 64-bit integer result of the multiplication operation. ## -description @@ -77,10 +77,6 @@ The first unsigned 32-bit integer for the multiplication operation. The second unsigned 32-bit integer for the multiplication operation. -## -returns - -The value of the product. - ## -remarks This function is implemented on all platforms by optimal inline code: a single multiply instruction that returns a 64-bit result. From 26130a21db5c7861c89c2eb8d48bfe4b1925647b Mon Sep 17 00:00:00 2001 From: Ratin Gao Date: Sat, 11 Oct 2025 15:29:20 +0800 Subject: [PATCH 2/2] Update nf-winnt-uint32x32to64.md --- sdk-api-src/content/winnt/nf-winnt-uint32x32to64.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk-api-src/content/winnt/nf-winnt-uint32x32to64.md b/sdk-api-src/content/winnt/nf-winnt-uint32x32to64.md index d663875e031..5d90bf488bf 100644 --- a/sdk-api-src/content/winnt/nf-winnt-uint32x32to64.md +++ b/sdk-api-src/content/winnt/nf-winnt-uint32x32to64.md @@ -82,7 +82,7 @@ The second unsigned 32-bit integer for the multiplication operation. This function is implemented on all platforms by optimal inline code: a single multiply instruction that returns a 64-bit result. Please note that the function's return value is a 64-bit value, not a -LARGE_INTEGER structure. +ULARGE_INTEGER structure. ## -see-also