/** * @brief Disable alert messaging for a specific event. * @param[in] alertEvent - the ID of the event to be disabled * * @return PXCM_STATUS_NO_ERROR - operation succeeded. * @return PXCM_STATUS_PARAM_UNSUPPORTED - unsupported parameter. * @return PXCM_STATUS_DATA_NOT_INITIALIZED - data was not initialized. * * @see PXCMHandData.AlertType */ public pxcmStatus DisableAlert(PXCMHandData.AlertType alertEvent) { return(PXCMHandConfiguration_DisableAlert(instance, alertEvent)); }
internal static extern pxcmStatus PXCMHandConfiguration_DisableAlert(IntPtr instance, PXCMHandData.AlertType alertEvent);
/** * @brief Test the activation status of the given alert. * @param[in] alertEvent - the ID of the event to be tested. * @return true if the alert is enabled, false otherwise. * * @see PXCMHandData.AlertType */ public Boolean IsAlertEnabled(PXCMHandData.AlertType alertEvent) { return(PXCMHandConfiguration_IsAlertEnabled(instance, alertEvent)); }
internal static extern Boolean PXCMHandConfiguration_IsAlertEnabled(IntPtr instance, PXCMHandData.AlertType alertEvent);