RtlLongLongToUInt 函数 (ntintsafe.h)

LONGLONG 类型的值转换为 UINT 类型的值。

语法

NTSTATUS RtlLongLongToUInt(
  [in]  LONGLONG llOperand,
  [out] UINT     *puResult
);

参数

[in] llOperand

要转换的值。

[out] puResult

指向转换后的值的指针。 在转换导致原始值截断的情况下,函数返回STATUS_INTEGER_OVERFLOW且此参数无效。

返回值

如果操作成功,则返回STATUS_SUCCESS。

有关可能的错误返回值,请参阅 WDK 中的 中 ntintsafe.h 此帮助程序函数的实现。

注解

这是一组内联函数之一,旨在提供类型转换和执行有效性检查,同时对性能的影响最小。

此函数使用以下备用名称:

  • RtlIntPtrToUInt
  • RtlLongPtrToUInt
  • RtlLongLongToUInt32
  • RtlLongLongToUIntPtr
  • RtlLong64ToUInt
  • RtlLong64ToUInt32
  • RtlInt64ToUInt
  • RtlInt64ToUInt32
  • RtlLongLongToSizeT
  • RtlLong64ToUIntPtr
  • RtlLong64ToSizeT
  • RtlInt64ToUIntPtr
  • RtlInt64ToSizeT

要求

要求
目标平台 桌面
标头 ntintsafe.h