PxOpoolIdError()

Return the last error of the object handle Opool.

APPLIES TO

8.2.0

SYNOPSIS
PxError_t PxOpoolIdError (PxOpool_t Opool);
ARGUMENTS
Opool

An Opool handle

RETURN VALUES
  • The last error of the object handle Opool

DESCRIPTION

PxOpoolIdError returns the last error of the object handle Opool.

USAGE
#include "pxdef.h"

PxError_t err = PxOpoolIdError(Opool);

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