PxToIdError()

Return the last error of the object handle To.

APPLIES TO

1.0.0

SYNOPSIS
PxError_t PxToIdError (PxTo_t To);
ARGUMENTS
To

A To handle

RETURN VALUES
  • The last error of the object handle To

DESCRIPTION

PxToIdError returns the last error of the object handle To.

USAGE
#include "pxdef.h"

PxError_t err = PxToIdError(To);

if (err != PXERR_NOERROR) {
    // Report error
}