VarDecCmpR8 function

Compares a variant of type decimal with the a value of type double.

Syntax


HRESULT VarDecCmpR8(
  _In_ LPDECIMAL pdecLeft,
  _In_ double    dblRight
);

Parameters

pdecLeft [in]

The first variant.

dblRight [in]

The second variant.

Return value

This function can return one of these values.

Return code/valueDescription
VARCMP_LT
0

pdecLeft is less than dblRight.

VARCMP_EQ
1

The two parameters are equal.

VARCMP_GT
2

pdecLeft is greater than dblRight.

VARCMP_NULL
3

Either expression is null.

 

Requirements

Header

OleAuto.h

Library

OleAut32.lib

DLL

OleAut32.dll

 

 

Show: