This topic has not yet been rated - Rate this topic

RtlShortSub function

Subtracts one value of type SHORT from another.

Syntax


NTSTATUS RtlShortSub(
  _In_   SHORT sMinuend,
  _In_   SHORT sSubtrahend,
  _Out_  SHORT *psResult
);

Parameters

sMinuend [in]

The value from which sSubtrahend is subtracted.

sSubtrahend [in]

The value to subtract from sMinuend.

psResult [out]

A pointer to the result. If the operation results in a value that overflows or underflows the capacity of the type, the function returns STATUS_INTEGER_OVERFLOW and this parameter is not valid.

Remarks

This is one of a set of inline functions designed to provide arithmetic operations and perform validity checks with minimal impact on performance.

This function uses the following alternate name:

  • RtlInt16Sub

Requirements

Header

Ntintsafe.h

 

 

Send comments about this topic to Microsoft

Build date: 5/2/2013

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.