Previous Next

FLOATOBJ_Add

The FLOATOBJ_Add function adds the two FLOATOBJs, and returns with the result in the first parameter.

VOID
  FLOATOBJ_Add(
    IN OUT PFLOATOBJ  pf,
    IN PFLOATOBJ  pf1
    );

Parameters

pf
Pointer to the first FLOATOBJ operand. When the function returns, *pf will be reset to the sum of *pf and *pf1.
pf1
Pointer to the second FLOATOBJ operand.

Return Value

None

Headers

Declared in winddi.h. Include winddi.h.

Comments

The FLOATOBJ_Xxx services allow graphics drivers to emulate floating point arithmetic. An NT-based operating system does not support kernel-mode floating point operations on some systems.

See Also

FLOATOBJ