PxMcIdError()

Return the last error of the object handle Mc.

APPLIES TO

1.0.0

SYNOPSIS
PxError_t PxMcIdError (PxMc_t Mc);
ARGUMENTS
Mc

A Mc handle

RETURN VALUES
  • The last error of the object handle Mc

DESCRIPTION

PxMcIdError returns the last error of the object handle Mc.

USAGE
#include "pxdef.h"

PxError_t err = PxMcIdError(Mc);

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